import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new reCAPTCHA Enterprise key. */ export declare class Key extends pulumi.CustomResource { /** * Get an existing Key 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): Key; /** * Returns true if the given object is an instance of Key. 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 Key; /** * Settings for keys that can be used by Android apps. */ readonly androidSettings: pulumi.Output; /** * The timestamp corresponding to the creation of this key. */ readonly createTime: pulumi.Output; /** * Human-readable display name of this key. Modifiable by user. */ readonly displayName: pulumi.Output; /** * Settings for keys that can be used by iOS apps. */ readonly iosSettings: pulumi.Output; /** * Optional. See [Creating and managing labels] (https://cloud.google.com/recaptcha-enterprise/docs/labels). */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * Identifier. The resource name for the Key in the format `projects/{project}/keys/{key}`. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Optional. Options for user acceptance testing. */ readonly testingOptions: pulumi.Output; /** * Optional. Settings for WAF */ readonly wafSettings: pulumi.Output; /** * Settings for keys that can be used by websites. */ readonly webSettings: pulumi.Output; /** * Create a Key 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: KeyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Key resource. */ export interface KeyArgs { /** * Settings for keys that can be used by Android apps. */ androidSettings?: pulumi.Input; /** * Human-readable display name of this key. Modifiable by user. */ displayName: pulumi.Input; /** * Settings for keys that can be used by iOS apps. */ iosSettings?: pulumi.Input; /** * Optional. See [Creating and managing labels] (https://cloud.google.com/recaptcha-enterprise/docs/labels). */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Identifier. The resource name for the Key in the format `projects/{project}/keys/{key}`. */ name?: pulumi.Input; project?: pulumi.Input; /** * Optional. Options for user acceptance testing. */ testingOptions?: pulumi.Input; /** * Optional. Settings for WAF */ wafSettings?: pulumi.Input; /** * Settings for keys that can be used by websites. */ webSettings?: pulumi.Input; }