We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 298f3d3 + 507c8c6 commit 78c93bbCopy full SHA for 78c93bb
authzed/api/v1/error_reason.proto
@@ -386,4 +386,17 @@ enum ErrorReason {
386
// "metadata": { "counter_name": "name" }
387
// }
388
ERROR_REASON_COUNTER_NOT_REGISTERED = 27;
389
+
390
+ // The request failed because a wildcard was not allowed. For CheckPermission,
391
+ // this means that the subject or resource ID was a wildcard. For LookupResources,
392
+ // this means that the subject ID was a wildcard.
393
+ //
394
+ // Example of an ErrorInfo:
395
396
+ // {
397
+ // "reason": "ERROR_REASON_WILDCARD_NOT_ALLOWED",
398
+ // "domain": "authzed.com",
399
+ // "metadata": { "disallowed_field": "subject_id" }
400
+ // }
401
+ ERROR_REASON_WILDCARD_NOT_ALLOWED = 28;
402
}
0 commit comments