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

Dataset

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

A dataset is a collection of data that has a specific configuration. A dataset can be backed by multiple tables. One bucket can have multiple datasets.

interface Dataset {
readonly createTime?: Date;
readonly deleteTime?: Date;
description?: string;
displayName?: string;
name?: string;
readonly purgeTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Create timestamp.

§
readonly deleteTime?: Date
[src]

Output only. Delete timestamp.

§
description?: string
[src]

Optional. Description of the dataset.

§
displayName?: string
[src]

Optional. User friendly display name.

§
name?: string
[src]

Identifier. Name of the dataset. The format is: projects/[PROJECT_ID]/locations/[LOCATION]/buckets/[BUCKET_ID]/datasets/[DATASET_ID]

§
readonly purgeTime?: Date
[src]

Output only. Timestamp when the dataset in soft-deleted state is purged.