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

GoogleCloudAiplatformV1IndexEndpoint

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

Indexes are deployed into it. An IndexEndpoint can have multiple DeployedIndexes.

interface GoogleCloudAiplatformV1IndexEndpoint {
readonly createTime?: Date;
readonly deployedIndexes?: GoogleCloudAiplatformV1DeployedIndex[];
description?: string;
displayName?: string;
enablePrivateServiceConnect?: boolean;
etag?: string;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
network?: string;
readonly publicEndpointDomainName?: string;
publicEndpointEnabled?: boolean;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Timestamp when this IndexEndpoint was created.

§
readonly deployedIndexes?: GoogleCloudAiplatformV1DeployedIndex[]
[src]

Output only. The indexes deployed in this endpoint.

§
description?: string
[src]

The description of the IndexEndpoint.

§
displayName?: string
[src]

Required. The display name of the IndexEndpoint. The name can be up to 128 characters long and can consist of any UTF-8 characters.

§
enablePrivateServiceConnect?: boolean
[src]

Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.

§

Immutable. Customer-managed encryption key spec for an IndexEndpoint. If set, this IndexEndpoint and all sub-resources of this IndexEndpoint will be secured by this key.

§
etag?: string
[src]

Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.

§
labels?: {
[key: string]: string;
}
[src]

The labels with user-defined metadata to organize your IndexEndpoints. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.

§
readonly name?: string
[src]

Output only. The resource name of the IndexEndpoint.

§
network?: string
[src]

Optional. The full name of the Google Compute Engine network to which the IndexEndpoint should be peered. Private services access must already be configured for the network. If left unspecified, the Endpoint is not peered with any network. network and private_service_connect_config are mutually exclusive. Format: projects/{project}/global/networks/{network}. Where {project} is a project number, as in '12345', and {network} is network name.

§

Optional. Configuration for private service connect. network and private_service_connect_config are mutually exclusive.

§
readonly publicEndpointDomainName?: string
[src]

Output only. If public_endpoint_enabled is true, this field will be populated with the domain name to use for this index endpoint.

§
publicEndpointEnabled?: boolean
[src]

Optional. If true, the deployed index will be accessible through public endpoint.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this IndexEndpoint was last updated. This timestamp is not updated when the endpoint's DeployedIndexes are updated, e.g. due to updates of the original Indexes they are the deployments of.