import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets information about an app profile. */ export declare function getAppProfile(args: GetAppProfileArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAppProfileArgs { appProfileId: string; instanceId: string; project?: string; } export interface GetAppProfileResult { /** * Long form description of the use case for this AppProfile. */ readonly description: string; /** * 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](https://en.wikipedia.org/wiki/HTTP_ETag) and [RFC 7232](https://tools.ietf.org/html/rfc7232#section-2.3) for more details. */ readonly etag: string; /** * Use a multi-cluster routing policy. */ readonly multiClusterRoutingUseAny: outputs.bigtableadmin.v2.MultiClusterRoutingUseAnyResponse; /** * The unique name of the app profile. Values are of the form `projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*`. */ readonly name: string; /** * 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. */ readonly priority: string; /** * Use a single-cluster routing policy. */ readonly singleClusterRouting: outputs.bigtableadmin.v2.SingleClusterRoutingResponse; /** * The standard options used for isolating this app profile's traffic from other use cases. */ readonly standardIsolation: outputs.bigtableadmin.v2.StandardIsolationResponse; } /** * Gets information about an app profile. */ export declare function getAppProfileOutput(args: GetAppProfileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetAppProfileOutputArgs { appProfileId: pulumi.Input; instanceId: pulumi.Input; project?: pulumi.Input; }