You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Output only. Identifier. The resource name for the Assessment in the format// `projects/{project}/assessments/{assessment}`.
string name = 1 [
(google.api.field_behavior) = OUTPUT_ONLY,
(google.api.field_behavior) = IDENTIFIER
];
The text was updated successfully, but these errors were encountered:
Hello,
I wonder if a
name
field withIDENTIFIER
+OUTPUT_ONLY
behavior is valid.On the one hand
OUTPUT_ONLY
states the following in AIP-203:So methods like standard Update/Delete won't work, because the server must clear out the
name
value which identifies the resource to be updated.On the other hand, I see at least one
IDENTIFIER
+OUTPUT_ONLY
precedent of in googleapis: https://github.com/googleapis/googleapis/blob/7659dd2244563fd902b681bdcadbe5385b8d3462/google/cloud/recaptchaenterprise/v1/recaptchaenterprise.proto#L605The text was updated successfully, but these errors were encountered: