UNPKG

@pulumi/f5bigip

Version:

A Pulumi package for creating and managing F5 BigIP resources.

97 lines 4.04 kB
import * as pulumi from "@pulumi/pulumi"; export declare class ProfileBotDefense extends pulumi.CustomResource { /** * Get an existing ProfileBotDefense 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<pulumi.ID>, state?: ProfileBotDefenseState, opts?: pulumi.CustomResourceOptions): ProfileBotDefense; /** * Returns true if the given object is an instance of ProfileBotDefense. 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 ProfileBotDefense; /** * Specifies the profile from which this profile inherits settings. The default is the system-supplied `request-log` profile */ readonly defaultsFrom: pulumi.Output<string | undefined>; /** * User defined description for Bot Defense profile */ readonly description: pulumi.Output<string>; /** * Select the enforcement mode, possible values are `transparent` and `blocking`. */ readonly enforcementMode: pulumi.Output<string>; /** * Name of the Bot Defense profile */ readonly name: pulumi.Output<string>; /** * Profile templates specify Mitigation and Verification Settings default values. possible ptions `balanced`,`relaxed` and `strict` */ readonly template: pulumi.Output<string>; /** * Create a ProfileBotDefense 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: ProfileBotDefenseArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ProfileBotDefense resources. */ export interface ProfileBotDefenseState { /** * Specifies the profile from which this profile inherits settings. The default is the system-supplied `request-log` profile */ defaultsFrom?: pulumi.Input<string | undefined>; /** * User defined description for Bot Defense profile */ description?: pulumi.Input<string | undefined>; /** * Select the enforcement mode, possible values are `transparent` and `blocking`. */ enforcementMode?: pulumi.Input<string | undefined>; /** * Name of the Bot Defense profile */ name?: pulumi.Input<string | undefined>; /** * Profile templates specify Mitigation and Verification Settings default values. possible ptions `balanced`,`relaxed` and `strict` */ template?: pulumi.Input<string | undefined>; } /** * The set of arguments for constructing a ProfileBotDefense resource. */ export interface ProfileBotDefenseArgs { /** * Specifies the profile from which this profile inherits settings. The default is the system-supplied `request-log` profile */ defaultsFrom?: pulumi.Input<string | undefined>; /** * User defined description for Bot Defense profile */ description?: pulumi.Input<string | undefined>; /** * Select the enforcement mode, possible values are `transparent` and `blocking`. */ enforcementMode?: pulumi.Input<string | undefined>; /** * Name of the Bot Defense profile */ name: pulumi.Input<string>; /** * Profile templates specify Mitigation and Verification Settings default values. possible ptions `balanced`,`relaxed` and `strict` */ template?: pulumi.Input<string | undefined>; } //# sourceMappingURL=profileBotDefense.d.ts.map