Skip to main content

instances_screenshot

Creates, updates, deletes, gets or lists a instances_screenshot resource.

Overview

Nameinstances_screenshot
TypeResource
Idgoogle.compute.instances_screenshot

Fields

NameDatatypeDescription
contentsstring[Output Only] The Base64-encoded screenshot data.
kindstring[Output Only] Type of the resource. Always compute#screenshot for the screenshots.

Methods

NameAccessible byRequired ParamsDescription
get_screenshotSELECTinstance, project, zoneReturns the screenshot from the specified instance.

SELECT examples

Returns the screenshot from the specified instance.

SELECT
contents,
kind
FROM google.compute.instances_screenshot
WHERE instance = '{{ instance }}'
AND project = '{{ project }}'
AND zone = '{{ zone }}';