Skip to main content

image_family_views

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

Overview

Nameimage_family_views
TypeResource
Idgoogle.compute.image_family_views

Fields

NameDatatypeDescription
imageobjectRepresents an Image resource. You can use images to create boot disks for your VM instances. For more information, read Images.

Methods

NameAccessible byRequired ParamsDescription
getSELECTfamily, project, zoneReturns the latest image that is part of an image family, is not deprecated and is rolled out in the specified zone.

SELECT examples

Returns the latest image that is part of an image family, is not deprecated and is rolled out in the specified zone.

SELECT
image
FROM google.compute.image_family_views
WHERE family = '{{ family }}'
AND project = '{{ project }}'
AND zone = '{{ zone }}';