import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates an app profile within an instance. */ export declare class InstanceAppProfile extends pulumi.CustomResource { /** * Get an existing InstanceAppProfile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): InstanceAppProfile; /** * Returns true if the given object is an instance of InstanceAppProfile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is InstanceAppProfile; /** * Long form description of the use case for this AppProfile. */ readonly description: pulumi.Output; /** * 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: pulumi.Output; /** * Use a multi-cluster routing policy. */ readonly multiClusterRoutingUseAny: pulumi.Output; /** * The unique name of the app profile. Values are of the form `projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*`. */ readonly name: pulumi.Output; /** * Use a single-cluster routing policy. */ readonly singleClusterRouting: pulumi.Output; /** * Create a InstanceAppProfile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: InstanceAppProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a InstanceAppProfile resource. */ export interface InstanceAppProfileArgs { readonly appProfilesId: pulumi.Input; /** * Long form description of the use case for this AppProfile. */ readonly description?: pulumi.Input; /** * 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?: pulumi.Input; readonly instancesId: pulumi.Input; /** * Use a multi-cluster routing policy. */ readonly multiClusterRoutingUseAny?: pulumi.Input; /** * The unique name of the app profile. Values are of the form `projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*`. */ readonly name?: pulumi.Input; readonly projectsId: pulumi.Input; /** * Use a single-cluster routing policy. */ readonly singleClusterRouting?: pulumi.Input; }