import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Ruleset extends pulumi.CustomResource { /** * Get an existing Ruleset 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?: RulesetState, opts?: pulumi.CustomResourceOptions): Ruleset; /** * Returns true if the given object is an instance of Ruleset. 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 Ruleset; /** * The unique ID of the account. */ readonly accountId: pulumi.Output; /** * An informative description of the ruleset. */ readonly description: pulumi.Output; /** * The kind of the ruleset. * Available values: "managed", "custom", "root", "zone". */ readonly kind: pulumi.Output; /** * The timestamp of when the ruleset was last modified. */ readonly lastUpdated: pulumi.Output; /** * The human-readable name of the ruleset. */ readonly name: pulumi.Output; /** * The phase of the ruleset. * Available values: "ddos_l4", "ddos_l7", "http_config_settings", "http_custom_errors", "http_log_custom_fields", "http_ratelimit", "http_request_cache_settings", "http_request_dynamic_redirect", "http_request_firewall_custom", "http_request_firewall_managed", "http_request_late_transform", "http_request_origin", "http_request_redirect", "http_request_sanitize", "http_request_sbfm", "http_request_transform", "http_response_cache_settings", "http_response_compression", "http_response_firewall_managed", "http_response_headers_transform", "magic_transit", "magic_transit_ids_managed", "magic_transit_managed", "magic_transit_ratelimit". */ readonly phase: pulumi.Output; /** * The list of rules in the ruleset. */ readonly rules: pulumi.Output; /** * The version of the ruleset. */ readonly version: pulumi.Output; /** * The unique ID of the zone. */ readonly zoneId: pulumi.Output; /** * Create a Ruleset 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: RulesetArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Ruleset resources. */ export interface RulesetState { /** * The unique ID of the account. */ accountId?: pulumi.Input; /** * An informative description of the ruleset. */ description?: pulumi.Input; /** * The kind of the ruleset. * Available values: "managed", "custom", "root", "zone". */ kind?: pulumi.Input; /** * The timestamp of when the ruleset was last modified. */ lastUpdated?: pulumi.Input; /** * The human-readable name of the ruleset. */ name?: pulumi.Input; /** * The phase of the ruleset. * Available values: "ddos_l4", "ddos_l7", "http_config_settings", "http_custom_errors", "http_log_custom_fields", "http_ratelimit", "http_request_cache_settings", "http_request_dynamic_redirect", "http_request_firewall_custom", "http_request_firewall_managed", "http_request_late_transform", "http_request_origin", "http_request_redirect", "http_request_sanitize", "http_request_sbfm", "http_request_transform", "http_response_cache_settings", "http_response_compression", "http_response_firewall_managed", "http_response_headers_transform", "magic_transit", "magic_transit_ids_managed", "magic_transit_managed", "magic_transit_ratelimit". */ phase?: pulumi.Input; /** * The list of rules in the ruleset. */ rules?: pulumi.Input[]>; /** * The version of the ruleset. */ version?: pulumi.Input; /** * The unique ID of the zone. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a Ruleset resource. */ export interface RulesetArgs { /** * The unique ID of the account. */ accountId?: pulumi.Input; /** * An informative description of the ruleset. */ description?: pulumi.Input; /** * The kind of the ruleset. * Available values: "managed", "custom", "root", "zone". */ kind: pulumi.Input; /** * The human-readable name of the ruleset. */ name?: pulumi.Input; /** * The phase of the ruleset. * Available values: "ddos_l4", "ddos_l7", "http_config_settings", "http_custom_errors", "http_log_custom_fields", "http_ratelimit", "http_request_cache_settings", "http_request_dynamic_redirect", "http_request_firewall_custom", "http_request_firewall_managed", "http_request_late_transform", "http_request_origin", "http_request_redirect", "http_request_sanitize", "http_request_sbfm", "http_request_transform", "http_response_cache_settings", "http_response_compression", "http_response_firewall_managed", "http_response_headers_transform", "magic_transit", "magic_transit_ids_managed", "magic_transit_managed", "magic_transit_ratelimit". */ phase: pulumi.Input; /** * The list of rules in the ruleset. */ rules?: pulumi.Input[]>; /** * The unique ID of the zone. */ zoneId?: pulumi.Input; } //# sourceMappingURL=ruleset.d.ts.map