gcpSuspended constant

ErrorReason const gcpSuspended

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 gcpSuspended = ErrorReason('GCP_SUSPENDED');