GCP_SUSPENDED constant

ErrorReason const GCP_SUSPENDED

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.

Implementation

static const ErrorReason GCP_SUSPENDED = ErrorReason._(30, _omitEnumNames ? '' : 'GCP_SUSPENDED');