instances_shielded_instance_config
Creates, updates, deletes, gets or lists a instances_shielded_instance_config
resource.
Overview
Name | instances_shielded_instance_config |
Type | Resource |
Id | google.compute.instances_shielded_instance_config |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
update_shielded_instance_config | UPDATE | instance, project, zone | Updates 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 }}';