import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class SaasBotDefenseProfile extends pulumi.CustomResource { /** * Get an existing SaasBotDefenseProfile 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?: SaasBotDefenseProfileState, opts?: pulumi.CustomResourceOptions): SaasBotDefenseProfile; /** * Returns true if the given object is an instance of SaasBotDefenseProfile. 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 SaasBotDefenseProfile; /** * Specifies the API key, enter the value provided by F5 Support. */ readonly apiKey: pulumi.Output; /** * Specifies the Bot Defense API application ID, enter the value provided by F5 Support */ readonly applicationId: pulumi.Output; /** * Distributed Cloud Services Bot Defense parent profile from which this profile will inherit settings. */ readonly defaultsFrom: pulumi.Output; /** * Specifies descriptive text that identifies the BD profile. */ readonly description: pulumi.Output; /** * Unique name for the Distributed Cloud Services Bot Defense profile */ readonly name: pulumi.Output; /** * Use these settings to configure which pages on the website will be protected by BD */ readonly protectedEndpoints: pulumi.Output; /** * Specifies the web hostname to which API requests are made */ readonly shapeProtectionPool: pulumi.Output; /** * Specifies a server-side SSL profile that is different from what the application pool uses */ readonly sslProfile: pulumi.Output; /** * Specifies the tenant ID, enter the value provided by F5 Support */ readonly tenantId: pulumi.Output; /** * Create a SaasBotDefenseProfile 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: SaasBotDefenseProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SaasBotDefenseProfile resources. */ export interface SaasBotDefenseProfileState { /** * Specifies the API key, enter the value provided by F5 Support. */ apiKey?: pulumi.Input; /** * Specifies the Bot Defense API application ID, enter the value provided by F5 Support */ applicationId?: pulumi.Input; /** * Distributed Cloud Services Bot Defense parent profile from which this profile will inherit settings. */ defaultsFrom?: pulumi.Input; /** * Specifies descriptive text that identifies the BD profile. */ description?: pulumi.Input; /** * Unique name for the Distributed Cloud Services Bot Defense profile */ name?: pulumi.Input; /** * Use these settings to configure which pages on the website will be protected by BD */ protectedEndpoints?: pulumi.Input[] | undefined>; /** * Specifies the web hostname to which API requests are made */ shapeProtectionPool?: pulumi.Input; /** * Specifies a server-side SSL profile that is different from what the application pool uses */ sslProfile?: pulumi.Input; /** * Specifies the tenant ID, enter the value provided by F5 Support */ tenantId?: pulumi.Input; } /** * The set of arguments for constructing a SaasBotDefenseProfile resource. */ export interface SaasBotDefenseProfileArgs { /** * Specifies the API key, enter the value provided by F5 Support. */ apiKey: pulumi.Input; /** * Specifies the Bot Defense API application ID, enter the value provided by F5 Support */ applicationId: pulumi.Input; /** * Distributed Cloud Services Bot Defense parent profile from which this profile will inherit settings. */ defaultsFrom?: pulumi.Input; /** * Specifies descriptive text that identifies the BD profile. */ description?: pulumi.Input; /** * Unique name for the Distributed Cloud Services Bot Defense profile */ name: pulumi.Input; /** * Use these settings to configure which pages on the website will be protected by BD */ protectedEndpoints: pulumi.Input[]>; /** * Specifies the web hostname to which API requests are made */ shapeProtectionPool: pulumi.Input; /** * Specifies a server-side SSL profile that is different from what the application pool uses */ sslProfile: pulumi.Input; /** * Specifies the tenant ID, enter the value provided by F5 Support */ tenantId: pulumi.Input; } //# sourceMappingURL=saasBotDefenseProfile.d.ts.map