Interface CachedContent

A resource used in LLM queries for users to explicitly specify what to cache.

interface CachedContent {
    createTime?: string;
    displayName?: string;
    expireTime?: string;
    model?: string;
    name?: string;
    updateTime?: string;
    usageMetadata?: CachedContentUsageMetadata;
}

Properties

createTime?: string

Creation time of the cache entry.

displayName?: string

The user-generated meaningful display name of the cached content.

expireTime?: string

Expiration time of the cached content.

model?: string

The name of the publisher model to use for cached content.

name?: string

The server-generated resource name of the cached content.

updateTime?: string

When the cache entry was last updated in UTC time.

Metadata on the usage of the cached content.

MMNEPVFCICPMFPCPTTAAATR