shielded_instance_identity
Creates, updates, deletes, gets or lists a shielded_instance_identity
resource.
Overview
Name | shielded_instance_identity |
Type | Resource |
Id | google.compute.shielded_instance_identity |
Fields
The following fields are returned by SELECT
queries:
- get_shielded_instance_identity
Successful response
Name | Datatype | Description |
---|---|---|
encryptionKey | object | An Endorsement Key (EK) made by the RSA 2048 algorithm issued to the Shielded Instance's vTPM. (id: ShieldedInstanceIdentityEntry) |
kind | string | [Output Only] Type of the resource. Always compute#shieldedInstanceIdentity for shielded Instance identity entry. (default: compute#shieldedInstanceIdentity) |
signingKey | object | An Attestation Key (AK) made by the RSA 2048 algorithm issued to the Shielded Instance's vTPM. (id: ShieldedInstanceIdentityEntry) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_shielded_instance_identity | select | project , zone , instance | Returns the Shielded Instance Identity of an instance |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
instance | string | |
project | string | |
zone | string |
SELECT
examples
- get_shielded_instance_identity
Returns the Shielded Instance Identity of an instance
SELECT
encryptionKey,
kind,
signingKey
FROM google.compute.shielded_instance_identity
WHERE project = '{{ project }}' -- required
AND zone = '{{ zone }}' -- required
AND instance = '{{ instance }}' -- required;