Resources unavailable

Status

503

Meaning

The API may respond with ‘Resources unavailable’ if you’ve executed a request against the route /hybrid-core/v2/hybrid-cores/:hybrid_core_id/resources and the view on the hybrid core’s resources temporarily can’t be processed and/or provided.

Semantically the response status code is equivalent to the HyperText Transfer Protocol (HTTP) 503 Service Unavailable response status code. It indicates that the server isn’t able to perform your request at the moment as cause of a server-side issue.

The 503 error is an error which is solely a server-side problem. It isn’t the client’s fault if processing and/or provisioning of a hybrid core’s resources view failed. This is the reason why this type of error is categorized within the scope of client-side (5xx) responses.

It’s important to point out that when you’ll get this response, you can rely on us working on fixing the issue as soon as possible.

Request

GET https://api.gridscale.io/hybrid-core/v2/hybrid-cores/xx01/resources

Response

Header:

HTTP/1.1 503 Service Unavailable
Content-Type: application/json; charset=utf-8
...

Body:

{
  "errors": [
    {
      "type": "https://my.gridscale.io/docs/apis/problems/hybrid-core/v2/resources-unavailable",
      "title": "Resources measurements report unavailable for this hybrid core",
      "status": 503,
      "detail": "Authentication is not available right now. Our Team has already been notified and is working on solving this issue.",
      "DocURL": "https://my.gridscale.io/docs/apis/hybrid-core/v2/introduction",
    }
  ]
}
Top