import * as pulumi from "@pulumi/pulumi"; /** * With this resource, you can create and manage flow vault connections for a tenant. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * // Example: * const myConnection = new auth0.FlowVaultConnection("my_connection", { * appId: "AUTH0", * name: "Auth0 M2M Connection", * setup: { * client_id: "******************", * client_secret: "*********************************", * domain: "*****************************", * type: "OAUTH_APP", * }, * }); * ``` * * ## Import * * This resource can be imported using the flow vault connection ID. * * Example: * * ```sh * $ pulumi import auth0:index/flowVaultConnection:FlowVaultConnection my_connection "ac_42HT5oiobDyUs8ASwEEWK0" * ``` */ export declare class FlowVaultConnection extends pulumi.CustomResource { /** * Get an existing FlowVaultConnection 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: FlowVaultConnectionState, opts?: pulumi.CustomResourceOptions): FlowVaultConnection; /** * Returns true if the given object is an instance of FlowVaultConnection. 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 FlowVaultConnection; /** * Custom account name of the vault connection. */ readonly accountName: pulumi.Output; /** * App identifier of the vault connection. */ readonly appId: pulumi.Output; /** * Environment of the vault connection. */ readonly environment: pulumi.Output; /** * Fingerprint of the vault connection. */ readonly fingerprint: pulumi.Output; /** * Name of the vault connection. */ readonly name: pulumi.Output; /** * Indicates if the vault connection is configured. */ readonly ready: pulumi.Output; /** * Configuration of the vault connection. (Mapping information must be provided as key/value pairs) */ readonly setup: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a FlowVaultConnection 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: FlowVaultConnectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FlowVaultConnection resources. */ export interface FlowVaultConnectionState { /** * Custom account name of the vault connection. */ accountName?: pulumi.Input; /** * App identifier of the vault connection. */ appId?: pulumi.Input; /** * Environment of the vault connection. */ environment?: pulumi.Input; /** * Fingerprint of the vault connection. */ fingerprint?: pulumi.Input; /** * Name of the vault connection. */ name?: pulumi.Input; /** * Indicates if the vault connection is configured. */ ready?: pulumi.Input; /** * Configuration of the vault connection. (Mapping information must be provided as key/value pairs) */ setup?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a FlowVaultConnection resource. */ export interface FlowVaultConnectionArgs { /** * Custom account name of the vault connection. */ accountName?: pulumi.Input; /** * App identifier of the vault connection. */ appId: pulumi.Input; /** * Environment of the vault connection. */ environment?: pulumi.Input; /** * Fingerprint of the vault connection. */ fingerprint?: pulumi.Input; /** * Name of the vault connection. */ name?: pulumi.Input; /** * Configuration of the vault connection. (Mapping information must be provided as key/value pairs) */ setup?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }