import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Protection Rules in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets the list of available protection rules for a WAAS policy. Use the `GetWafConfig` operation to view a list of currently configured protection rules for the Web Application Firewall, or use the `ListRecommendations` operation to get a list of recommended protection rules for the Web Application Firewall. * The list is sorted by `key`, in ascending order. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProtectionRules = oci.waas.getProtectionRules({ * waasPolicyId: testWaasPolicy.id, * actions: protectionRuleAction, * modSecurityRuleIds: testRule.id, * }); * ``` */ export declare function getProtectionRules(args: GetProtectionRulesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProtectionRules. */ export interface GetProtectionRulesArgs { /** * Filter rules using a list of actions. */ actions?: string[]; filters?: inputs.Waas.GetProtectionRulesFilter[]; /** * Filter rules using a list of ModSecurity rule IDs. */ modSecurityRuleIds?: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WAAS policy. */ waasPolicyId: string; } /** * A collection of values returned by getProtectionRules. */ export interface GetProtectionRulesResult { /** * The action to take when the traffic is detected as malicious. If unspecified, defaults to `OFF`. */ readonly actions?: string[]; readonly filters?: outputs.Waas.GetProtectionRulesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly modSecurityRuleIds?: string[]; /** * The list of protection_rules. */ readonly protectionRules: outputs.Waas.GetProtectionRulesProtectionRule[]; readonly waasPolicyId: string; } /** * This data source provides the list of Protection Rules in Oracle Cloud Infrastructure Web Application Acceleration and Security service. * * Gets the list of available protection rules for a WAAS policy. Use the `GetWafConfig` operation to view a list of currently configured protection rules for the Web Application Firewall, or use the `ListRecommendations` operation to get a list of recommended protection rules for the Web Application Firewall. * The list is sorted by `key`, in ascending order. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProtectionRules = oci.waas.getProtectionRules({ * waasPolicyId: testWaasPolicy.id, * actions: protectionRuleAction, * modSecurityRuleIds: testRule.id, * }); * ``` */ export declare function getProtectionRulesOutput(args: GetProtectionRulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProtectionRules. */ export interface GetProtectionRulesOutputArgs { /** * Filter rules using a list of actions. */ actions?: pulumi.Input[] | undefined>; filters?: pulumi.Input[] | undefined>; /** * Filter rules using a list of ModSecurity rule IDs. */ modSecurityRuleIds?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the WAAS policy. */ waasPolicyId: pulumi.Input; } //# sourceMappingURL=getProtectionRules.d.ts.map