import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * AuthenticationProfile resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const chapRadiusProfile = new scm.RadiusServerProfile("chap_radius_profile", { * name: "CHAP_only_rsp", * folder: "ngfw-shared", * retries: 5, * timeout: 60, * protocol: { * chap: {}, * }, * servers: [{ * name: "Chap_Server_Primary", * ipAddress: "10.1.1.10", * port: 1812, * secret: "-AQ==lhyuV6U/j9Trb9JL9L0UoBecg9Y=kTOWntGhZ1KFyLD+etKQ3g==", * }], * }); * const globalRadiusAccess = new scm.AuthenticationProfile("global_radius_access", { * name: "test_auth_profile_radius", * folder: "ngfw-shared", * userDomain: "default", * usernameModifier: "%USERINPUT%", * allowLists: ["ngfw-shared"], * lockout: { * failedAttempts: 1, * lockoutTime: 3, * }, * method: { * radius: { * checkgroup: true, * serverProfile: chapRadiusProfile.name, * }, * }, * singleSignOn: { * realm: "EXAMPLE.COM", * }, * }); * const globalDbAccess = new scm.AuthenticationProfile("global_db_access", { * name: "test_auth_global_db", * folder: "ngfw-shared", * userDomain: "default", * usernameModifier: "%USERINPUT%", * allowLists: ["ngfw-shared"], * lockout: { * failedAttempts: 3, * lockoutTime: 1, * }, * method: { * localDatabase: {}, * }, * singleSignOn: { * realm: "EXAMPLE.COM", * }, * }); * ``` * * ## Import * * The following command can be used to import a resource not managed by Terraform: * * ```sh * $ pulumi import scm:index/authenticationProfile:AuthenticationProfile example folder:::id * ``` * * or * * ```sh * $ pulumi import scm:index/authenticationProfile:AuthenticationProfile example :snippet::id * ``` * * or * * ```sh * $ pulumi import scm:index/authenticationProfile:AuthenticationProfile example ::device:id * ``` * * **Note:** Please provide just one of folder, snippet, or device for the import command. */ export declare class AuthenticationProfile extends pulumi.CustomResource { /** * Get an existing AuthenticationProfile 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?: AuthenticationProfileState, opts?: pulumi.CustomResourceOptions): AuthenticationProfile; /** * Returns true if the given object is an instance of AuthenticationProfile. 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 AuthenticationProfile; /** * The allowList of the authentication profile */ readonly allowLists: pulumi.Output; /** * The device in which the resource is defined */ readonly device: pulumi.Output; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: pulumi.Output; /** * Lockout object of the authentication profile */ readonly lockout: pulumi.Output; /** * method object of authentication profile */ readonly method: pulumi.Output; /** * Multi factor auth */ readonly multiFactorAuth: pulumi.Output; /** * The name of the authentication profile */ readonly name: pulumi.Output; /** * Single sign on */ readonly singleSignOn: pulumi.Output; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: pulumi.Output; /** * The Terraform ID. */ readonly tfid: pulumi.Output; /** * User domain */ readonly userDomain: pulumi.Output; /** * Username modifier */ readonly usernameModifier: pulumi.Output; /** * Create a AuthenticationProfile 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?: AuthenticationProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AuthenticationProfile resources. */ export interface AuthenticationProfileState { /** * The allowList of the authentication profile */ allowLists?: pulumi.Input[] | undefined>; /** * The device in which the resource is defined */ device?: pulumi.Input; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input; /** * Lockout object of the authentication profile */ lockout?: pulumi.Input; /** * method object of authentication profile */ method?: pulumi.Input; /** * Multi factor auth */ multiFactorAuth?: pulumi.Input; /** * The name of the authentication profile */ name?: pulumi.Input; /** * Single sign on */ singleSignOn?: pulumi.Input; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input; /** * The Terraform ID. */ tfid?: pulumi.Input; /** * User domain */ userDomain?: pulumi.Input; /** * Username modifier */ usernameModifier?: pulumi.Input; } /** * The set of arguments for constructing a AuthenticationProfile resource. */ export interface AuthenticationProfileArgs { /** * The allowList of the authentication profile */ allowLists?: pulumi.Input[] | undefined>; /** * The device in which the resource is defined */ device?: pulumi.Input; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input; /** * Lockout object of the authentication profile */ lockout?: pulumi.Input; /** * method object of authentication profile */ method?: pulumi.Input; /** * Multi factor auth */ multiFactorAuth?: pulumi.Input; /** * The name of the authentication profile */ name?: pulumi.Input; /** * Single sign on */ singleSignOn?: pulumi.Input; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input; /** * User domain */ userDomain?: pulumi.Input; /** * Username modifier */ usernameModifier?: pulumi.Input; } //# sourceMappingURL=authenticationProfile.d.ts.map