import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Manage Auth0 connection profiles. Connection profiles allow you to store configuration templates for connections. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myProfile = new auth0.ConnectionProfile("my_profile", { * name: "My-Profile", * organization: { * showAsButton: "optional", * assignMembershipOnLogin: "required", * }, * connectionNamePrefixTemplate: "template1", * enabledFeatures: [ * "scim", * "universal_logout", * ], * }); * ``` * * ## Import * * This resource can be imported by specifying the connection Profile ID * * Example: * * ```sh * $ pulumi import auth0:index/connectionProfile:ConnectionProfile my_profile "cop_xxxxxxxxxxxxxxxxx" * ``` */ export declare class ConnectionProfile extends pulumi.CustomResource { /** * Get an existing ConnectionProfile 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?: ConnectionProfileState, opts?: pulumi.CustomResourceOptions): ConnectionProfile; /** * Returns true if the given object is an instance of ConnectionProfile. 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 ConnectionProfile; /** * Connection configuration for the profile. */ readonly connectionConfig: pulumi.Output; /** * Template for generating connection names from the profile. */ readonly connectionNamePrefixTemplate: pulumi.Output; /** * List of enabled features for the connection profile. */ readonly enabledFeatures: pulumi.Output; /** * Name of the connection profile. */ readonly name: pulumi.Output; /** * Organization associated with the connection profile. */ readonly organization: pulumi.Output; /** * Strategy overrides for the connection profile. */ readonly strategyOverrides: pulumi.Output; /** * Create a ConnectionProfile 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?: ConnectionProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ConnectionProfile resources. */ export interface ConnectionProfileState { /** * Connection configuration for the profile. */ connectionConfig?: pulumi.Input; /** * Template for generating connection names from the profile. */ connectionNamePrefixTemplate?: pulumi.Input; /** * List of enabled features for the connection profile. */ enabledFeatures?: pulumi.Input[]>; /** * Name of the connection profile. */ name?: pulumi.Input; /** * Organization associated with the connection profile. */ organization?: pulumi.Input; /** * Strategy overrides for the connection profile. */ strategyOverrides?: pulumi.Input; } /** * The set of arguments for constructing a ConnectionProfile resource. */ export interface ConnectionProfileArgs { /** * Connection configuration for the profile. */ connectionConfig?: pulumi.Input; /** * Template for generating connection names from the profile. */ connectionNamePrefixTemplate?: pulumi.Input; /** * List of enabled features for the connection profile. */ enabledFeatures?: pulumi.Input[]>; /** * Name of the connection profile. */ name?: pulumi.Input; /** * Organization associated with the connection profile. */ organization?: pulumi.Input; /** * Strategy overrides for the connection profile. */ strategyOverrides?: pulumi.Input; }