import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates an app profile within an instance. */ export declare class AppProfile extends pulumi.CustomResource { /** * Get an existing AppProfile 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): AppProfile; /** * Returns true if the given object is an instance of AppProfile. 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 AppProfile; /** * Required. The ID to be used when referring to the new app profile within its instance, e.g., just `myprofile` rather than `projects/myproject/instances/myinstance/appProfiles/myprofile`. */ readonly appProfileId: pulumi.Output; /** * 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; /** * If true, ignore safety checks when creating the app profile. */ readonly ignoreWarnings: pulumi.Output; readonly instanceId: 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; /** * 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: pulumi.Output; readonly project: pulumi.Output; /** * Use a single-cluster routing policy. */ readonly singleClusterRouting: pulumi.Output; /** * The standard options used for isolating this app profile's traffic from other use cases. */ readonly standardIsolation: pulumi.Output; /** * Create a AppProfile 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: AppProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AppProfile resource. */ export interface AppProfileArgs { /** * Required. The ID to be used when referring to the new app profile within its instance, e.g., just `myprofile` rather than `projects/myproject/instances/myinstance/appProfiles/myprofile`. */ appProfileId: pulumi.Input; /** * Long form description of the use case for this AppProfile. */ 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. */ etag?: pulumi.Input; /** * If true, ignore safety checks when creating the app profile. */ ignoreWarnings?: pulumi.Input; instanceId: pulumi.Input; /** * Use a multi-cluster routing policy. */ multiClusterRoutingUseAny?: pulumi.Input; /** * The unique name of the app profile. Values are of the form `projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*`. */ name?: pulumi.Input; /** * 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. */ priority?: pulumi.Input; project?: pulumi.Input; /** * Use a single-cluster routing policy. */ singleClusterRouting?: pulumi.Input; /** * The standard options used for isolating this app profile's traffic from other use cases. */ standardIsolation?: pulumi.Input; }