status property

String? status
getter/setter pair

The status of the image.

@OutputOnly Possible string values are:

  • "STATUS_UNSPECIFIED" : The image status is unspecified. Should not be used.
  • "PENDING_PROCESSING" : The image was uploaded and is being processed.
  • "PENDING_CRAWL" : The image crawl is still pending.
  • "OK" : The image was processed and it meets the requirements.
  • "ROBOTED" : The image URL is protected by robots.txt file and cannot be crawled.
  • "XROBOTED" : The image URL is protected by X-Robots-Tag and cannot be crawled.
  • "CRAWL_ERROR" : There was an error while crawling the image.
  • "PROCESSING_ERROR" : The image cannot be processed.
  • "DECODING_ERROR" : The image cannot be decoded.
  • "TOO_BIG" : The image is too big.
  • "CRAWL_SKIPPED" : The image was manually overridden and will not be crawled.
  • "HOSTLOADED" : The image crawl was postponed to avoid overloading the host.
  • "HTTP_404" : The image URL returned a "404 Not Found" error.

Implementation

core.String? status;