instances_shielded_instance_identity
Creates, updates, deletes, gets or lists a instances_shielded_instance_identity
resource.
Overview
Name | instances_shielded_instance_identity |
Type | Resource |
Id | google.compute.instances_shielded_instance_identity |
Fields
Name | Datatype | Description |
---|---|---|
encryptionKey | object | A Shielded Instance Identity Entry. |
kind | string | [Output Only] Type of the resource. Always compute#shieldedInstanceIdentity for shielded Instance identity entry. |
signingKey | object | A Shielded Instance Identity Entry. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_shielded_instance_identity | SELECT | instance, project, zone | Returns 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 }}';