diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-04-05 09:45:34 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-04-05 09:45:34 +0300 |
commit | d66e99ee21633e529e77c1ab09c1f998cbd678af (patch) | |
tree | f1971f993730029e967f8c6e7e3c058dc52847a9 /contrib/libs/googleapis-common-protos/google/api/error_reason.proto | |
parent | 2d855b352786046d8b13b64ea1d4d9b39e745339 (diff) | |
download | ydb-d66e99ee21633e529e77c1ab09c1f998cbd678af.tar.gz |
Update contrib/libs/googleapis-common-protos to 1.59.0
Diffstat (limited to 'contrib/libs/googleapis-common-protos/google/api/error_reason.proto')
-rw-r--r-- | contrib/libs/googleapis-common-protos/google/api/error_reason.proto | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/contrib/libs/googleapis-common-protos/google/api/error_reason.proto b/contrib/libs/googleapis-common-protos/google/api/error_reason.proto index 3b1d0e2123..c0509be4fc 100644 --- a/contrib/libs/googleapis-common-protos/google/api/error_reason.proto +++ b/contrib/libs/googleapis-common-protos/google/api/error_reason.proto @@ -1,4 +1,4 @@ -// Copyright 2020 Google LLC +// Copyright 2023 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -532,4 +532,39 @@ enum ErrorReason { // } // } ORG_RESTRICTION_HEADER_INVALID = 28; + + // Unimplemented. Do not use. + // + // The request is calling a service that is not visible to the consumer. + // + // Example of an ErrorInfo when the consumer "projects/123" contacting + // "pubsub.googleapis.com" service which is not visible to the consumer. + // + // { "reason": "SERVICE_NOT_VISIBLE", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "pubsub.googleapis.com" + // } + // } + // + // This response indicates the "pubsub.googleapis.com" is not visible to + // "projects/123" (or it may not exist). + SERVICE_NOT_VISIBLE = 29; + + // The request is related to a project for which GCP access is suspended. + // + // Example of an ErrorInfo when the consumer "projects/123" fails to contact + // "pubsub.googleapis.com" service because GCP access is suspended: + // + // { "reason": "GCP_SUSPENDED", + // "domain": "googleapis.com", + // "metadata": { + // "consumer": "projects/123", + // "service": "pubsub.googleapis.com" + // } + // } + // + // This response indicates the associated GCP account has been suspended. + GCP_SUSPENDED = 30; } |