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

GoogleCloudDatacatalogV1BigQueryDateShardedSpec

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

Specification for a group of BigQuery tables with the [prefix]YYYYMMDD name pattern. For more information, see [Introduction to partitioned tables] (https://cloud.google.com/bigquery/docs/partitioned-tables#partitioning_versus_sharding).

interface GoogleCloudDatacatalogV1BigQueryDateShardedSpec {
readonly dataset?: string;
readonly latestShardResource?: string;
readonly shardCount?: bigint;
readonly tablePrefix?: string;
}

§Properties

§
readonly dataset?: string
[src]

Output only. The Data Catalog resource name of the dataset entry the current table belongs to. For example: projects/{PROJECT_ID}/locations/{LOCATION}/entrygroups/{ENTRY_GROUP_ID}/entries/{ENTRY_ID}.

§
readonly latestShardResource?: string
[src]

Output only. BigQuery resource name of the latest shard.

§
readonly shardCount?: bigint
[src]

Output only. Total number of shards.

§
readonly tablePrefix?: string
[src]

Output only. The table name prefix of the shards. The name of any given shard is [table_prefix]YYYYMMDD. For example, for the MyTable20180101 shard, the table_prefix is MyTable.