import * as pulumi from "@pulumi/pulumi"; export declare class AppSecSlowPost extends pulumi.CustomResource { /** * Get an existing AppSecSlowPost 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?: AppSecSlowPostState, opts?: pulumi.CustomResourceOptions): AppSecSlowPost; /** * Returns true if the given object is an instance of AppSecSlowPost. 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 AppSecSlowPost; /** * Unique identifier of the security configuration */ readonly configId: pulumi.Output; /** * Maximum amount of time (in seconds) within which the first 8KB of the POST body must be received to avoid triggering the specified action */ readonly durationThresholdTimeout: pulumi.Output; /** * Unique identifier of the security policy */ readonly securityPolicyId: pulumi.Output; /** * Action to be taken when slow POST protection is triggered */ readonly slowRateAction: pulumi.Output; /** * Amount of time (in seconds) that the server should allow a request before marking the request as being too slow */ readonly slowRateThresholdPeriod: pulumi.Output; /** * Average rate (in bytes per second over the specified time period) allowed before the specified action is triggered */ readonly slowRateThresholdRate: pulumi.Output; /** * Create a AppSecSlowPost 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: AppSecSlowPostArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AppSecSlowPost resources. */ export interface AppSecSlowPostState { /** * Unique identifier of the security configuration */ configId?: pulumi.Input; /** * Maximum amount of time (in seconds) within which the first 8KB of the POST body must be received to avoid triggering the specified action */ durationThresholdTimeout?: pulumi.Input; /** * Unique identifier of the security policy */ securityPolicyId?: pulumi.Input; /** * Action to be taken when slow POST protection is triggered */ slowRateAction?: pulumi.Input; /** * Amount of time (in seconds) that the server should allow a request before marking the request as being too slow */ slowRateThresholdPeriod?: pulumi.Input; /** * Average rate (in bytes per second over the specified time period) allowed before the specified action is triggered */ slowRateThresholdRate?: pulumi.Input; } /** * The set of arguments for constructing a AppSecSlowPost resource. */ export interface AppSecSlowPostArgs { /** * Unique identifier of the security configuration */ configId: pulumi.Input; /** * Maximum amount of time (in seconds) within which the first 8KB of the POST body must be received to avoid triggering the specified action */ durationThresholdTimeout?: pulumi.Input; /** * Unique identifier of the security policy */ securityPolicyId: pulumi.Input; /** * Action to be taken when slow POST protection is triggered */ slowRateAction: pulumi.Input; /** * Amount of time (in seconds) that the server should allow a request before marking the request as being too slow */ slowRateThresholdPeriod?: pulumi.Input; /** * Average rate (in bytes per second over the specified time period) allowed before the specified action is triggered */ slowRateThresholdRate?: pulumi.Input; } //# sourceMappingURL=appSecSlowPost.d.ts.map