Skip to main content

instances_shielded_instance_config

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

Overview

Nameinstances_shielded_instance_config
TypeResource
Idgoogle.compute.instances_shielded_instance_config

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
update_shielded_instance_configUPDATEinstance, project, zoneUpdates the Shielded Instance config for an instance. You can only use this method on a stopped instance. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

UPDATE example

Updates a instances_shielded_instance_config resource.

/*+ update */
UPDATE google.compute.instances_shielded_instance_config
SET
enableSecureBoot = true|false,
enableVtpm = true|false,
enableIntegrityMonitoring = true|false
WHERE
instance = '{{ instance }}'
AND project = '{{ project }}'
AND zone = '{{ zone }}';