The IMPORT METADATA syntax is used to import cluster metadata from file or inline value.
ImportMetaData ::=
'IMPORT' 'METADATA' (metaDataValue | 'FROM' 'FILE' filePath)
metaDataValue ::=
string
filePath ::=
string
metaDataValue should be a Base64 string exported by EXPORT METADATA;FROM FILE should point to a JSON file exported by EXPORT METADATA TO FILE;IMPORT METADATA FROM FILE '/tmp/metadata.json';
IMPORT METADATA 'eyJtZXRhX2RhdGEiOns...';
IMPORT, METADATA, FROM, FILE
