@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
147 lines (146 loc) • 5.75 kB
TypeScript
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<pulumi.ID>, 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<string>;
/**
* Specifies the Bot Defense API application ID, enter the value provided by F5 Support
*/
readonly applicationId: pulumi.Output<string>;
/**
* Distributed Cloud Services Bot Defense parent profile from which this profile will inherit settings.
*/
readonly defaultsFrom: pulumi.Output<string | undefined>;
/**
* Specifies descriptive text that identifies the BD profile.
*/
readonly description: pulumi.Output<string>;
/**
* Unique name for the Distributed Cloud Services Bot Defense profile
*/
readonly name: pulumi.Output<string>;
/**
* Use these settings to configure which pages on the website will be protected by BD
*/
readonly protectedEndpoints: pulumi.Output<outputs.SaasBotDefenseProfileProtectedEndpoint[]>;
/**
* Specifies the web hostname to which API requests are made
*/
readonly shapeProtectionPool: pulumi.Output<string>;
/**
* Specifies a server-side SSL profile that is different from what the application pool uses
*/
readonly sslProfile: pulumi.Output<string>;
/**
* Specifies the tenant ID, enter the value provided by F5 Support
*/
readonly tenantId: pulumi.Output<string>;
/**
* 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<string>;
/**
* Specifies the Bot Defense API application ID, enter the value provided by F5 Support
*/
applicationId?: pulumi.Input<string>;
/**
* Distributed Cloud Services Bot Defense parent profile from which this profile will inherit settings.
*/
defaultsFrom?: pulumi.Input<string>;
/**
* Specifies descriptive text that identifies the BD profile.
*/
description?: pulumi.Input<string>;
/**
* Unique name for the Distributed Cloud Services Bot Defense profile
*/
name?: pulumi.Input<string>;
/**
* Use these settings to configure which pages on the website will be protected by BD
*/
protectedEndpoints?: pulumi.Input<pulumi.Input<inputs.SaasBotDefenseProfileProtectedEndpoint>[]>;
/**
* Specifies the web hostname to which API requests are made
*/
shapeProtectionPool?: pulumi.Input<string>;
/**
* Specifies a server-side SSL profile that is different from what the application pool uses
*/
sslProfile?: pulumi.Input<string>;
/**
* Specifies the tenant ID, enter the value provided by F5 Support
*/
tenantId?: pulumi.Input<string>;
}
/**
* 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<string>;
/**
* Specifies the Bot Defense API application ID, enter the value provided by F5 Support
*/
applicationId: pulumi.Input<string>;
/**
* Distributed Cloud Services Bot Defense parent profile from which this profile will inherit settings.
*/
defaultsFrom?: pulumi.Input<string>;
/**
* Specifies descriptive text that identifies the BD profile.
*/
description?: pulumi.Input<string>;
/**
* Unique name for the Distributed Cloud Services Bot Defense profile
*/
name: pulumi.Input<string>;
/**
* Use these settings to configure which pages on the website will be protected by BD
*/
protectedEndpoints: pulumi.Input<pulumi.Input<inputs.SaasBotDefenseProfileProtectedEndpoint>[]>;
/**
* Specifies the web hostname to which API requests are made
*/
shapeProtectionPool: pulumi.Input<string>;
/**
* Specifies a server-side SSL profile that is different from what the application pool uses
*/
sslProfile: pulumi.Input<string>;
/**
* Specifies the tenant ID, enter the value provided by F5 Support
*/
tenantId: pulumi.Input<string>;
}