Documentation ¶
Index ¶
- Variables
- type BadRequest
- type BadRequest_FieldViolation
- func (*BadRequest_FieldViolation) Descriptor() ([]byte, []int)deprecated
- func (x *BadRequest_FieldViolation) GetDescription() string
- func (x *BadRequest_FieldViolation) GetField() string
- func (*BadRequest_FieldViolation) ProtoMessage()
- func (x *BadRequest_FieldViolation) ProtoReflect() protoreflect.Message
- func (x *BadRequest_FieldViolation) Reset()
- func (x *BadRequest_FieldViolation) String() string
- type DebugInfo
- type ErrorInfo
- func (*ErrorInfo) Descriptor() ([]byte, []int)deprecated
- func (x *ErrorInfo) GetDomain() string
- func (x *ErrorInfo) GetMetadata() map[string]string
- func (x *ErrorInfo) GetReason() string
- func (*ErrorInfo) ProtoMessage()
- func (x *ErrorInfo) ProtoReflect() protoreflect.Message
- func (x *ErrorInfo) Reset()
- func (x *ErrorInfo) String() string
- type Help
- type Help_Link
- type LocalizedMessage
- func (*LocalizedMessage) Descriptor() ([]byte, []int)deprecated
- func (x *LocalizedMessage) GetLocale() string
- func (x *LocalizedMessage) GetMessage() string
- func (*LocalizedMessage) ProtoMessage()
- func (x *LocalizedMessage) ProtoReflect() protoreflect.Message
- func (x *LocalizedMessage) Reset()
- func (x *LocalizedMessage) String() string
- type PreconditionFailure
- func (*PreconditionFailure) Descriptor() ([]byte, []int)deprecated
- func (x *PreconditionFailure) GetViolations() []*PreconditionFailure_Violation
- func (*PreconditionFailure) ProtoMessage()
- func (x *PreconditionFailure) ProtoReflect() protoreflect.Message
- func (x *PreconditionFailure) Reset()
- func (x *PreconditionFailure) String() string
- type PreconditionFailure_Violation
- func (*PreconditionFailure_Violation) Descriptor() ([]byte, []int)deprecated
- func (x *PreconditionFailure_Violation) GetDescription() string
- func (x *PreconditionFailure_Violation) GetSubject() string
- func (x *PreconditionFailure_Violation) GetType() string
- func (*PreconditionFailure_Violation) ProtoMessage()
- func (x *PreconditionFailure_Violation) ProtoReflect() protoreflect.Message
- func (x *PreconditionFailure_Violation) Reset()
- func (x *PreconditionFailure_Violation) String() string
- type QuotaFailure
- type QuotaFailure_Violation
- func (*QuotaFailure_Violation) Descriptor() ([]byte, []int)deprecated
- func (x *QuotaFailure_Violation) GetDescription() string
- func (x *QuotaFailure_Violation) GetSubject() string
- func (*QuotaFailure_Violation) ProtoMessage()
- func (x *QuotaFailure_Violation) ProtoReflect() protoreflect.Message
- func (x *QuotaFailure_Violation) Reset()
- func (x *QuotaFailure_Violation) String() string
- type RequestInfo
- func (*RequestInfo) Descriptor() ([]byte, []int)deprecated
- func (x *RequestInfo) GetRequestId() string
- func (x *RequestInfo) GetServingData() string
- func (*RequestInfo) ProtoMessage()
- func (x *RequestInfo) ProtoReflect() protoreflect.Message
- func (x *RequestInfo) Reset()
- func (x *RequestInfo) String() string
- type ResourceInfo
- func (*ResourceInfo) Descriptor() ([]byte, []int)deprecated
- func (x *ResourceInfo) GetDescription() string
- func (x *ResourceInfo) GetOwner() string
- func (x *ResourceInfo) GetResourceName() string
- func (x *ResourceInfo) GetResourceType() string
- func (*ResourceInfo) ProtoMessage()
- func (x *ResourceInfo) ProtoReflect() protoreflect.Message
- func (x *ResourceInfo) Reset()
- func (x *ResourceInfo) String() string
- type RetryInfo
Constants ¶
This section is empty.
Variables ¶
var File_google_rpc_error_details_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type BadRequest ¶
type BadRequest struct { // Describes all violations in a client request. FieldViolations []*BadRequest_FieldViolation `protobuf:"bytes,1,rep,name=field_violations,json=fieldViolations,proto3" json:"field_violations,omitempty"` // contains filtered or unexported fields }
Describes violations in a client request. This error type focuses on the syntactic aspects of the request.
func (*BadRequest) Descriptor
deprecated
func (*BadRequest) Descriptor() ([]byte, []int)
Deprecated: Use BadRequest.ProtoReflect.Descriptor instead.
func (*BadRequest) GetFieldViolations ¶
func (x *BadRequest) GetFieldViolations() []*BadRequest_FieldViolation
func (*BadRequest) ProtoMessage ¶
func (*BadRequest) ProtoMessage()
func (*BadRequest) ProtoReflect ¶
func (x *BadRequest) ProtoReflect() protoreflect.Message
func (*BadRequest) Reset ¶
func (x *BadRequest) Reset()
func (*BadRequest) String ¶
func (x *BadRequest) String() string
type BadRequest_FieldViolation ¶
type BadRequest_FieldViolation struct { // A path leading to a field in the request body. The value will be a // sequence of dot-separated identifiers that identify a protocol buffer // field. E.g., "field_violations.field" would identify this field. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` // A description of why the request element is bad. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` // contains filtered or unexported fields }
A message type used to describe a single bad request field.
func (*BadRequest_FieldViolation) Descriptor
deprecated
func (*BadRequest_FieldViolation) Descriptor() ([]byte, []int)
Deprecated: Use BadRequest_FieldViolation.ProtoReflect.Descriptor instead.
func (*BadRequest_FieldViolation) GetDescription ¶
func (x *BadRequest_FieldViolation) GetDescription() string
func (*BadRequest_FieldViolation) GetField ¶
func (x *BadRequest_FieldViolation) GetField() string
func (*BadRequest_FieldViolation) ProtoMessage ¶
func (*BadRequest_FieldViolation) ProtoMessage()
func (*BadRequest_FieldViolation) ProtoReflect ¶
func (x *BadRequest_FieldViolation) ProtoReflect() protoreflect.Message
func (*BadRequest_FieldViolation) Reset ¶
func (x *BadRequest_FieldViolation) Reset()
func (*BadRequest_FieldViolation) String ¶
func (x *BadRequest_FieldViolation) String() string
type DebugInfo ¶
type DebugInfo struct { // The stack trace entries indicating where the error occurred. StackEntries []string `protobuf:"bytes,1,rep,name=stack_entries,json=stackEntries,proto3" json:"stack_entries,omitempty"` // Additional debugging information provided by the server. Detail string `protobuf:"bytes,2,opt,name=detail,proto3" json:"detail,omitempty"` // contains filtered or unexported fields }
Describes additional debugging info.
func (*DebugInfo) Descriptor
deprecated
func (*DebugInfo) GetStackEntries ¶
func (*DebugInfo) ProtoMessage ¶
func (*DebugInfo) ProtoMessage()
func (*DebugInfo) ProtoReflect ¶
func (x *DebugInfo) ProtoReflect() protoreflect.Message
type ErrorInfo ¶
type ErrorInfo struct { // The reason of the error. This is a constant value that identifies the // proximate cause of the error. Error reasons are unique within a particular // domain of errors. This should be at most 63 characters and match // /[A-Z0-9_]+/. Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"` // The logical grouping to which the "reason" belongs. The error domain // is typically the registered service name of the tool or product that // generates the error. Example: "pubsub.googleapis.com". If the error is // generated by some common infrastructure, the error domain must be a // globally unique value that identifies the infrastructure. For Google API // infrastructure, the error domain is "googleapis.com". Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"` // Additional structured details about this error. // // Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in // length. When identifying the current value of an exceeded limit, the units // should be contained in the key, not the value. For example, rather than // {"instanceLimit": "100/request"}, should be returned as, // {"instanceLimitPerRequest": "100"}, if the client exceeds the number of // instances that can be created in a single (batch) request. Metadata map[string]string `` /* 157-byte string literal not displayed */ // contains filtered or unexported fields }
Describes the cause of the error with structured details.
Example of an error when contacting the "pubsub.googleapis.com" API when it is not enabled:
{ "reason": "API_DISABLED" "domain": "googleapis.com" "metadata": { "resource": "projects/123", "service": "pubsub.googleapis.com" } }
This response indicates that the pubsub.googleapis.com API is not enabled.
Example of an error that is returned when attempting to create a Spanner instance in a region that is out of stock:
{ "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata": { "availableRegions": "us-central1,us-east2" } }
func (*ErrorInfo) Descriptor
deprecated
func (*ErrorInfo) GetMetadata ¶
func (*ErrorInfo) ProtoMessage ¶
func (*ErrorInfo) ProtoMessage()
func (*ErrorInfo) ProtoReflect ¶
func (x *ErrorInfo) ProtoReflect() protoreflect.Message
type Help ¶
type Help struct { // URL(s) pointing to additional information on handling the current error. Links []*Help_Link `protobuf:"bytes,1,rep,name=links,proto3" json:"links,omitempty"` // contains filtered or unexported fields }
Provides links to documentation or for performing an out of band action.
For example, if a quota check failed with an error indicating the calling project hasn't enabled the accessed service, this can contain a URL pointing directly to the right place in the developer console to flip the bit.
func (*Help) Descriptor
deprecated
func (*Help) ProtoMessage ¶
func (*Help) ProtoMessage()
func (*Help) ProtoReflect ¶
func (x *Help) ProtoReflect() protoreflect.Message
type Help_Link ¶
type Help_Link struct { // Describes what the link offers. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"` // The URL of the link. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` // contains filtered or unexported fields }
Describes a URL link.
func (*Help_Link) Descriptor
deprecated
func (*Help_Link) GetDescription ¶
func (*Help_Link) ProtoMessage ¶
func (*Help_Link) ProtoMessage()
func (*Help_Link) ProtoReflect ¶
func (x *Help_Link) ProtoReflect() protoreflect.Message
type LocalizedMessage ¶
type LocalizedMessage struct { // The locale used following the specification defined at // http://www.rfc-editor.org/rfc/bcp/bcp47.txt. // Examples are: "en-US", "fr-CH", "es-MX" Locale string `protobuf:"bytes,1,opt,name=locale,proto3" json:"locale,omitempty"` // The localized error message in the above locale. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` // contains filtered or unexported fields }
Provides a localized error message that is safe to return to the user which can be attached to an RPC error.
func (*LocalizedMessage) Descriptor
deprecated
func (*LocalizedMessage) Descriptor() ([]byte, []int)
Deprecated: Use LocalizedMessage.ProtoReflect.Descriptor instead.
func (*LocalizedMessage) GetLocale ¶
func (x *LocalizedMessage) GetLocale() string
func (*LocalizedMessage) GetMessage ¶
func (x *LocalizedMessage) GetMessage() string
func (*LocalizedMessage) ProtoMessage ¶
func (*LocalizedMessage) ProtoMessage()
func (*LocalizedMessage) ProtoReflect ¶
func (x *LocalizedMessage) ProtoReflect() protoreflect.Message
func (*LocalizedMessage) Reset ¶
func (x *LocalizedMessage) Reset()
func (*LocalizedMessage) String ¶
func (x *LocalizedMessage) String() string
type PreconditionFailure ¶
type PreconditionFailure struct { // Describes all precondition violations. Violations []*PreconditionFailure_Violation `protobuf:"bytes,1,rep,name=violations,proto3" json:"violations,omitempty"` // contains filtered or unexported fields }
Describes what preconditions have failed.
For example, if an RPC failed because it required the Terms of Service to be acknowledged, it could list the terms of service violation in the PreconditionFailure message.
func (*PreconditionFailure) Descriptor
deprecated
func (*PreconditionFailure) Descriptor() ([]byte, []int)
Deprecated: Use PreconditionFailure.ProtoReflect.Descriptor instead.
func (*PreconditionFailure) GetViolations ¶
func (x *PreconditionFailure) GetViolations() []*PreconditionFailure_Violation
func (*PreconditionFailure) ProtoMessage ¶
func (*PreconditionFailure) ProtoMessage()
func (*PreconditionFailure) ProtoReflect ¶
func (x *PreconditionFailure) ProtoReflect() protoreflect.Message
func (*PreconditionFailure) Reset ¶
func (x *PreconditionFailure) Reset()
func (*PreconditionFailure) String ¶
func (x *PreconditionFailure) String() string
type PreconditionFailure_Violation ¶
type PreconditionFailure_Violation struct { // The type of PreconditionFailure. We recommend using a service-specific // enum type to define the supported precondition violation subjects. For // example, "TOS" for "Terms of Service violation". Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // The subject, relative to the type, that failed. // For example, "google.com/cloud" relative to the "TOS" type would indicate // which terms of service is being referenced. Subject string `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"` // A description of how the precondition failed. Developers can use this // description to understand how to fix the failure. // // For example: "Terms of service not accepted". Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // contains filtered or unexported fields }
A message type used to describe a single precondition failure.
func (*PreconditionFailure_Violation) Descriptor
deprecated
func (*PreconditionFailure_Violation) Descriptor() ([]byte, []int)
Deprecated: Use PreconditionFailure_Violation.ProtoReflect.Descriptor instead.
func (*PreconditionFailure_Violation) GetDescription ¶
func (x *PreconditionFailure_Violation) GetDescription() string
func (*PreconditionFailure_Violation) GetSubject ¶
func (x *PreconditionFailure_Violation) GetSubject() string
func (*PreconditionFailure_Violation) GetType ¶
func (x *PreconditionFailure_Violation) GetType() string
func (*PreconditionFailure_Violation) ProtoMessage ¶
func (*PreconditionFailure_Violation) ProtoMessage()
func (*PreconditionFailure_Violation) ProtoReflect ¶
func (x *PreconditionFailure_Violation) ProtoReflect() protoreflect.Message
func (*PreconditionFailure_Violation) Reset ¶
func (x *PreconditionFailure_Violation) Reset()
func (*PreconditionFailure_Violation) String ¶
func (x *PreconditionFailure_Violation) String() string
type QuotaFailure ¶
type QuotaFailure struct { // Describes all quota violations. Violations []*QuotaFailure_Violation `protobuf:"bytes,1,rep,name=violations,proto3" json:"violations,omitempty"` // contains filtered or unexported fields }
Describes how a quota check failed.
For example if a daily limit was exceeded for the calling project, a service could respond with a QuotaFailure detail containing the project id and the description of the quota limit that was exceeded. If the calling project hasn't enabled the service in the developer console, then a service could respond with the project id and set `service_disabled` to true.
Also see RetryInfo and Help types for other details about handling a quota failure.
func (*QuotaFailure) Descriptor
deprecated
func (*QuotaFailure) Descriptor() ([]byte, []int)
Deprecated: Use QuotaFailure.ProtoReflect.Descriptor instead.
func (*QuotaFailure) GetViolations ¶
func (x *QuotaFailure) GetViolations() []*QuotaFailure_Violation
func (*QuotaFailure) ProtoMessage ¶
func (*QuotaFailure) ProtoMessage()
func (*QuotaFailure) ProtoReflect ¶
func (x *QuotaFailure) ProtoReflect() protoreflect.Message
func (*QuotaFailure) Reset ¶
func (x *QuotaFailure) Reset()
func (*QuotaFailure) String ¶
func (x *QuotaFailure) String() string
type QuotaFailure_Violation ¶
type QuotaFailure_Violation struct { // The subject on which the quota check failed. // For example, "clientip:<ip address of client>" or "project:<Google // developer project id>". Subject string `protobuf:"bytes,1,opt,name=subject,proto3" json:"subject,omitempty"` // A description of how the quota check failed. Clients can use this // description to find more about the quota configuration in the service's // public documentation, or find the relevant quota limit to adjust through // developer console. // // For example: "Service disabled" or "Daily Limit for read operations // exceeded". Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` // contains filtered or unexported fields }
A message type used to describe a single quota violation. For example, a daily quota or a custom quota that was exceeded.
func (*QuotaFailure_Violation) Descriptor
deprecated
func (*QuotaFailure_Violation) Descriptor() ([]byte, []int)
Deprecated: Use QuotaFailure_Violation.ProtoReflect.Descriptor instead.
func (*QuotaFailure_Violation) GetDescription ¶
func (x *QuotaFailure_Violation) GetDescription() string
func (*QuotaFailure_Violation) GetSubject ¶
func (x *QuotaFailure_Violation) GetSubject() string
func (*QuotaFailure_Violation) ProtoMessage ¶
func (*QuotaFailure_Violation) ProtoMessage()
func (*QuotaFailure_Violation) ProtoReflect ¶
func (x *QuotaFailure_Violation) ProtoReflect() protoreflect.Message
func (*QuotaFailure_Violation) Reset ¶
func (x *QuotaFailure_Violation) Reset()
func (*QuotaFailure_Violation) String ¶
func (x *QuotaFailure_Violation) String() string
type RequestInfo ¶
type RequestInfo struct { // An opaque string that should only be interpreted by the service generating // it. For example, it can be used to identify requests in the service's logs. RequestId string `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` // Any data that was used to serve this request. For example, an encrypted // stack trace that can be sent back to the service provider for debugging. ServingData string `protobuf:"bytes,2,opt,name=serving_data,json=servingData,proto3" json:"serving_data,omitempty"` // contains filtered or unexported fields }
Contains metadata about the request that clients can attach when filing a bug or providing other forms of feedback.
func (*RequestInfo) Descriptor
deprecated
func (*RequestInfo) Descriptor() ([]byte, []int)
Deprecated: Use RequestInfo.ProtoReflect.Descriptor instead.
func (*RequestInfo) GetRequestId ¶
func (x *RequestInfo) GetRequestId() string
func (*RequestInfo) GetServingData ¶
func (x *RequestInfo) GetServingData() string
func (*RequestInfo) ProtoMessage ¶
func (*RequestInfo) ProtoMessage()
func (*RequestInfo) ProtoReflect ¶
func (x *RequestInfo) ProtoReflect() protoreflect.Message
func (*RequestInfo) Reset ¶
func (x *RequestInfo) Reset()
func (*RequestInfo) String ¶
func (x *RequestInfo) String() string
type ResourceInfo ¶
type ResourceInfo struct { // A name for the type of resource being accessed, e.g. "sql table", // "cloud storage bucket", "file", "Google calendar"; or the type URL // of the resource: e.g. "type.googleapis.com/google.pubsub.v1.Topic". ResourceType string `protobuf:"bytes,1,opt,name=resource_type,json=resourceType,proto3" json:"resource_type,omitempty"` // The name of the resource being accessed. For example, a shared calendar // name: "example.com_4fghdhgsrgh@group.calendar.google.com", if the current // error is [google.rpc.Code.PERMISSION_DENIED][google.rpc.Code.PERMISSION_DENIED]. ResourceName string `protobuf:"bytes,2,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // The owner of the resource (optional). // For example, "user:<owner email>" or "project:<Google developer project // id>". Owner string `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"` // Describes what error is encountered when accessing this resource. // For example, updating a cloud project may require the `writer` permission // on the developer console project. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"` // contains filtered or unexported fields }
Describes the resource that is being accessed.
func (*ResourceInfo) Descriptor
deprecated
func (*ResourceInfo) Descriptor() ([]byte, []int)
Deprecated: Use ResourceInfo.ProtoReflect.Descriptor instead.
func (*ResourceInfo) GetDescription ¶
func (x *ResourceInfo) GetDescription() string
func (*ResourceInfo) GetOwner ¶
func (x *ResourceInfo) GetOwner() string
func (*ResourceInfo) GetResourceName ¶
func (x *ResourceInfo) GetResourceName() string
func (*ResourceInfo) GetResourceType ¶
func (x *ResourceInfo) GetResourceType() string
func (*ResourceInfo) ProtoMessage ¶
func (*ResourceInfo) ProtoMessage()
func (*ResourceInfo) ProtoReflect ¶
func (x *ResourceInfo) ProtoReflect() protoreflect.Message
func (*ResourceInfo) Reset ¶
func (x *ResourceInfo) Reset()
func (*ResourceInfo) String ¶
func (x *ResourceInfo) String() string
type RetryInfo ¶
type RetryInfo struct { // Clients should wait at least this long between retrying the same request. RetryDelay *durationpb.Duration `protobuf:"bytes,1,opt,name=retry_delay,json=retryDelay,proto3" json:"retry_delay,omitempty"` // contains filtered or unexported fields }
Describes when the clients can retry a failed request. Clients could ignore the recommendation here or retry when this information is missing from error responses.
It's always recommended that clients should use exponential backoff when retrying.
Clients should wait until `retry_delay` amount of time has passed since receiving the error response before retrying. If retrying requests also fail, clients should use an exponential backoff scheme to gradually increase the delay between retries based on `retry_delay`, until either a maximum number of retries have been reached or a maximum retry delay cap has been reached.
func (*RetryInfo) Descriptor
deprecated
func (*RetryInfo) GetRetryDelay ¶
func (x *RetryInfo) GetRetryDelay() *durationpb.Duration
func (*RetryInfo) ProtoMessage ¶
func (*RetryInfo) ProtoMessage()
func (*RetryInfo) ProtoReflect ¶
func (x *RetryInfo) ProtoReflect() protoreflect.Message