Skip to main content

instance_settings

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

Overview

Nameinstance_settings
TypeResource
Idgoogle.compute.instance_settings

Fields

NameDatatypeDescription
fingerprintstringSpecifies a fingerprint for instance settings, which is essentially a hash of the instance settings resource's contents and used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update the instance settings resource. You must always provide an up-to-date fingerprint hash in order to update or change the resource, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve the resource.
kindstring[Output Only] Type of the resource. Always compute#instance_settings for instance settings.
metadataobject
zonestring[Output Only] URL of the zone where the resource resides You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.

Methods

NameAccessible byRequired ParamsDescription
getSELECTproject, zoneGet Instance settings.
patchUPDATEproject, zonePatch Instance settings

SELECT examples

Get Instance settings.

SELECT
fingerprint,
kind,
metadata,
zone
FROM google.compute.instance_settings
WHERE project = '{{ project }}'
AND zone = '{{ zone }}';

UPDATE example

Updates a instance_settings resource.

/*+ update */
UPDATE google.compute.instance_settings
SET
fingerprint = '{{ fingerprint }}',
metadata = '{{ metadata }}',
zone = '{{ zone }}'
WHERE
project = '{{ project }}'
AND zone = '{{ zone }}';