import * as pulumi from "@pulumi/pulumi"; export declare class AppsecWafAiRules extends pulumi.CustomResource { /** * Get an existing AppsecWafAiRules 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?: AppsecWafAiRulesState, opts?: pulumi.CustomResourceOptions): AppsecWafAiRules; /** * Returns true if the given object is an instance of AppsecWafAiRules. 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 AppsecWafAiRules; /** * Action to set for the AI rule specified by rule_id. Valid values: alert, deny, deny_custom_, none. Mutually exclusive with ai_rule_status. */ readonly action: pulumi.Output; /** * AI rules status for the policy. Valid values: ENABLED, DISABLED. NOT_ENROLLED is returned by the API when the policy is not enrolled but cannot be set. Mutually exclusive with ruleId and action. */ readonly aiRuleStatus: pulumi.Output; /** * Unique identifier of the security configuration. */ readonly configId: pulumi.Output; /** * Description of what the AI rule detects. Populated automatically from the rule list. */ readonly ruleDescription: pulumi.Output; /** * Unique identifier of the AI rule whose action to manage. Mutually exclusive with ai_rule_status. */ readonly ruleId: pulumi.Output; /** * Unique identifier of the security policy. */ readonly securityPolicyId: pulumi.Output; /** * Create a AppsecWafAiRules 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: AppsecWafAiRulesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AppsecWafAiRules resources. */ export interface AppsecWafAiRulesState { /** * Action to set for the AI rule specified by rule_id. Valid values: alert, deny, deny_custom_, none. Mutually exclusive with ai_rule_status. */ action?: pulumi.Input; /** * AI rules status for the policy. Valid values: ENABLED, DISABLED. NOT_ENROLLED is returned by the API when the policy is not enrolled but cannot be set. Mutually exclusive with ruleId and action. */ aiRuleStatus?: pulumi.Input; /** * Unique identifier of the security configuration. */ configId?: pulumi.Input; /** * Description of what the AI rule detects. Populated automatically from the rule list. */ ruleDescription?: pulumi.Input; /** * Unique identifier of the AI rule whose action to manage. Mutually exclusive with ai_rule_status. */ ruleId?: pulumi.Input; /** * Unique identifier of the security policy. */ securityPolicyId?: pulumi.Input; } /** * The set of arguments for constructing a AppsecWafAiRules resource. */ export interface AppsecWafAiRulesArgs { /** * Action to set for the AI rule specified by rule_id. Valid values: alert, deny, deny_custom_, none. Mutually exclusive with ai_rule_status. */ action?: pulumi.Input; /** * AI rules status for the policy. Valid values: ENABLED, DISABLED. NOT_ENROLLED is returned by the API when the policy is not enrolled but cannot be set. Mutually exclusive with ruleId and action. */ aiRuleStatus?: pulumi.Input; /** * Unique identifier of the security configuration. */ configId: pulumi.Input; /** * Unique identifier of the AI rule whose action to manage. Mutually exclusive with ai_rule_status. */ ruleId?: pulumi.Input; /** * Unique identifier of the security policy. */ securityPolicyId: pulumi.Input; } //# sourceMappingURL=appsecWafAiRules.d.ts.map