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

AppProfile

import type { AppProfile } from "https://googleapis.deno.dev/v1/bigtableadmin:v2.ts";

A configuration object describing how Cloud Bigtable should treat traffic from a particular end user application.

interface AppProfile {
dataBoostIsolationReadOnly?: DataBoostIsolationReadOnly;
description?: string;
etag?: string;
multiClusterRoutingUseAny?: MultiClusterRoutingUseAny;
name?: string;
priority?:
| "PRIORITY_UNSPECIFIED"
| "PRIORITY_LOW"
| "PRIORITY_MEDIUM"
| "PRIORITY_HIGH";
singleClusterRouting?: SingleClusterRouting;
standardIsolation?: StandardIsolation;
}

§Properties

§
dataBoostIsolationReadOnly?: DataBoostIsolationReadOnly
[src]

Specifies that this app profile is intended for read-only usage via the Data Boost feature.

§
description?: string
[src]

Long form description of the use case for this AppProfile.

§
etag?: string
[src]

Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfile when calling UpdateAppProfile to fail the request if there has been a modification in the mean time. The update_mask of the request need not include etag for this protection to apply. See Wikipedia and RFC 7232 for more details.

§
multiClusterRoutingUseAny?: MultiClusterRoutingUseAny
[src]

Use a multi-cluster routing policy.

§
name?: string
[src]

The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*.

§
priority?: "PRIORITY_UNSPECIFIED" | "PRIORITY_LOW" | "PRIORITY_MEDIUM" | "PRIORITY_HIGH"
[src]

This field has been deprecated in favor of standard_isolation.priority. If you set this field, standard_isolation.priority will be set instead. The priority of requests sent using this app profile.

§
singleClusterRouting?: SingleClusterRouting
[src]

Use a single-cluster routing policy.

§
standardIsolation?: StandardIsolation
[src]

The standard options used for isolating this app profile's traffic from other use cases.