CONSUMER_SUSPENDED constant

ErrorReason const CONSUMER_SUSPENDED

The request is denied because the consumer "projects/123" is suspended due to Terms of Service(Tos) violations. Check Project suspension guidelines for more information.

Example of an ErrorInfo when calling Cloud Storage service with the suspended consumer "projects/123":

 { "reason": "CONSUMER_SUSPENDED",
   "domain": "googleapis.com",
   "metadata": {
     "consumer": "projects/123",
     "service": "storage.googleapis.com"
   }
 }

Implementation

static const ErrorReason CONSUMER_SUSPENDED = ErrorReason._(12, _omitEnumNames ? '' : 'CONSUMER_SUSPENDED');