Skip to main content

instances_shielded_instance_identity

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

Overview

Nameinstances_shielded_instance_identity
TypeResource
Idgoogle.compute.instances_shielded_instance_identity

Fields

NameDatatypeDescription
encryptionKeyobjectA Shielded Instance Identity Entry.
kindstring[Output Only] Type of the resource. Always compute#shieldedInstanceIdentity for shielded Instance identity entry.
signingKeyobjectA Shielded Instance Identity Entry.

Methods

NameAccessible byRequired ParamsDescription
get_shielded_instance_identitySELECTinstance, project, zoneReturns the Shielded Instance Identity of an instance

SELECT examples

Returns the Shielded Instance Identity of an instance

SELECT
encryptionKey,
kind,
signingKey
FROM google.compute.instances_shielded_instance_identity
WHERE instance = '{{ instance }}'
AND project = '{{ project }}'
AND zone = '{{ zone }}';