instances_screenshot
Creates, updates, deletes, gets or lists a instances_screenshot
resource.
Overview
Name | instances_screenshot |
Type | Resource |
Id | google.compute.instances_screenshot |
Fields
Name | Datatype | Description |
---|---|---|
contents | string | [Output Only] The Base64-encoded screenshot data. |
kind | string | [Output Only] Type of the resource. Always compute#screenshot for the screenshots. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_screenshot | SELECT | instance, project, zone | Returns 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 }}';