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

Binding

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

Represents a user-defined Binding.

interface Binding {
authProviderBinding?: AuthProviderBinding;
readonly createTime?: Date;
description?: string;
displayName?: string;
name?: string;
source?: Source;
target?: Target;
readonly updateTime?: Date;
}

§Properties

§
authProviderBinding?: AuthProviderBinding
[src]

The binding for AuthProvider.

§
readonly createTime?: Date
[src]

Output only. Timestamp when this binding was created.

§
description?: string
[src]

Optional. User-defined description of a Binding. Can have a maximum length of 2048 characters.

§
displayName?: string
[src]

Optional. User-defined display name for the Binding. Can have a maximum length of 63 characters.

§
name?: string
[src]

Required. Identifier. The resource name of the Binding. Format: projects/{project}/locations/{location}/bindings/{binding}.

§
source?: Source
[src]

Required. The target Agent of the Binding.

§
target?: Target
[src]

Required. The target Agent Registry Resource of the Binding.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this binding was last updated.