Skip to main content

keys_key_string

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

Overview

Namekeys_key_string
TypeResource
Idgoogle.apikeys.keys_key_string

Fields

NameDatatypeDescription
keyStringstringAn encrypted and signed value of the key.

Methods

NameAccessible byRequired ParamsDescription
get_key_stringSELECTkeysId, locationsId, projectsIdGet the key string for an API key. NOTE: Key is a global resource; hence the only supported value for location is global.

SELECT examples

Get the key string for an API key. NOTE: Key is a global resource; hence the only supported value for location is global.

SELECT
keyString
FROM google.apikeys.keys_key_string
WHERE keysId = '{{ keysId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';