Skip to main content

external_account_keys

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

Overview

Nameexternal_account_keys
TypeResource
Idgoogle.publicca.external_account_keys

Fields

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTlocationsId, projectsIdCreates a new ExternalAccountKey bound to the project.

INSERT example

Use the following StackQL query and manifest file to create a new external_account_keys resource.

/*+ create */
INSERT INTO google.publicca.external_account_keys (
locationsId,
projectsId
)
SELECT
'{{ locationsId }}',
'{{ projectsId }}'
;