Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExportMetadata

import type { ExportMetadata } from "https://googleapis.deno.dev/v1/looker:v1.ts";

ExportMetadata represents the metadata of the exported artifacts. The metadata.json file in export artifact can be parsed as this message

interface ExportMetadata {
exportEncryptionKey?: ExportMetadataEncryptionKey;
filePaths?: string[];
lookerEncryptionKey?: string;
lookerInstance?: string;
lookerPlatformEdition?: string;
lookerVersion?: string;
source?: "SOURCE_UNSPECIFIED" | "LOOKER_CORE" | "LOOKER_ORIGINAL";
}

§Properties

§
exportEncryptionKey?: ExportMetadataEncryptionKey
[src]

Encryption key that was used to encrypt the export artifacts.

§
filePaths?: string[]
[src]

List of files created as part of export artifact (excluding the metadata). The paths are relative to the folder containing the metadata.

§
lookerEncryptionKey?: string
[src]

Looker encryption key, encrypted with the provided export encryption key. This value will only be populated if the looker instance uses Looker managed encryption instead of CMEK.

§
lookerInstance?: string
[src]

Name of the exported instance. Format: projects/{project}/locations/{location}/instances/{instance}

§
lookerPlatformEdition?: string
[src]

Platform edition of the exported instance.

§
lookerVersion?: string
[src]

Version of instance when the export was created.

§
source?: "SOURCE_UNSPECIFIED" | "LOOKER_CORE" | "LOOKER_ORIGINAL"
[src]

The source type of the migration.