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

Endpoint

import type { Endpoint } from "https://googleapis.deno.dev/v1/agentregistry:v1alpha.ts";

Represents an Endpoint.

interface Endpoint {
readonly attributes?: {
[key: string]: {
[key: string]: any;
}
;
}
;
readonly createTime?: Date;
readonly description?: string;
readonly displayName?: string;
readonly endpointId?: string;
interfaces?: Interface[];
name?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly attributes?: {
[key: string]: {
[key: string]: any;
}
;
}
[src]

Output only. Attributes of the Endpoint. Valid values: * agentregistry.googleapis.com/system/RuntimeReference: {"uri": "//..."} - the URI of the underlying resource hosting the Endpoint, for example, the GKE Deployment.

§
readonly createTime?: Date
[src]

Output only. Create time.

§
readonly description?: string
[src]

Output only. Description of an Endpoint.

§
readonly displayName?: string
[src]

Output only. Display name for the Endpoint.

§
readonly endpointId?: string
[src]

Output only. A stable, globally unique identifier for Endpoint.

§
interfaces?: Interface[]
[src]

Required. The connection details for the Endpoint.

§
name?: string
[src]

Identifier. The resource name of the Endpoint. Format: projects/{project}/locations/{location}/endpoints/{endpoint}.

§
readonly updateTime?: Date
[src]

Output only. Update time.