fortimanager.ObjectWafProfileConstraint
Explore with Pulumi AI
WAF HTTP protocol restrictions.
This resource is a sub resource for variable
constraint
of resourcefortimanager.ObjectWafProfile
. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
content_length
:fortimanager.ObjectWafProfileConstraintContentlength
exception
:fortimanager.ObjectWafProfileConstraintException
header_length
:fortimanager.ObjectWafProfileConstraintHeaderlength
hostname
:fortimanager.ObjectWafProfileConstraintHostname
line_length
:fortimanager.ObjectWafProfileConstraintLinelength
malformed
:fortimanager.ObjectWafProfileConstraintMalformed
max_cookie
:fortimanager.ObjectWafProfileConstraintMaxcookie
max_header_line
:fortimanager.ObjectWafProfileConstraintMaxheaderline
max_range_segment
:fortimanager.ObjectWafProfileConstraintMaxrangesegment
max_url_param
:fortimanager.ObjectWafProfileConstraintMaxurlparam
method
:fortimanager.ObjectWafProfileConstraintMethod
param_length
:fortimanager.ObjectWafProfileConstraintParamlength
url_param_length
:fortimanager.ObjectWafProfileConstraintUrlparamlength
version
:fortimanager.ObjectWafProfileConstraintVersion
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectWafProfile = new fortimanager.ObjectWafProfile("trnameObjectWafProfile", {});
const trnameObjectWafProfileConstraint = new fortimanager.ObjectWafProfileConstraint("trnameObjectWafProfileConstraint", {
contentLength: {
action: "allow",
length: 120,
log: "enable",
status: "disable",
},
profile: trnameObjectWafProfile.name,
}, {
dependsOn: [trnameObjectWafProfile],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_waf_profile = fortimanager.ObjectWafProfile("trnameObjectWafProfile")
trname_object_waf_profile_constraint = fortimanager.ObjectWafProfileConstraint("trnameObjectWafProfileConstraint",
content_length={
"action": "allow",
"length": 120,
"log": "enable",
"status": "disable",
},
profile=trname_object_waf_profile.name,
opts = pulumi.ResourceOptions(depends_on=[trname_object_waf_profile]))
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
trnameObjectWafProfile, err := fortimanager.NewObjectWafProfile(ctx, "trnameObjectWafProfile", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWafProfileConstraint(ctx, "trnameObjectWafProfileConstraint", &fortimanager.ObjectWafProfileConstraintArgs{
ContentLength: &fortimanager.ObjectWafProfileConstraintContentLengthTypeArgs{
Action: pulumi.String("allow"),
Length: pulumi.Float64(120),
Log: pulumi.String("enable"),
Status: pulumi.String("disable"),
},
Profile: trnameObjectWafProfile.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectWafProfile,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trnameObjectWafProfile = new Fortimanager.ObjectWafProfile("trnameObjectWafProfile");
var trnameObjectWafProfileConstraint = new Fortimanager.ObjectWafProfileConstraint("trnameObjectWafProfileConstraint", new()
{
ContentLength = new Fortimanager.Inputs.ObjectWafProfileConstraintContentLengthArgs
{
Action = "allow",
Length = 120,
Log = "enable",
Status = "disable",
},
Profile = trnameObjectWafProfile.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectWafProfile,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWafProfile;
import com.pulumi.fortimanager.ObjectWafProfileConstraint;
import com.pulumi.fortimanager.ObjectWafProfileConstraintArgs;
import com.pulumi.fortimanager.inputs.ObjectWafProfileConstraintContentLengthArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trnameObjectWafProfile = new ObjectWafProfile("trnameObjectWafProfile");
var trnameObjectWafProfileConstraint = new ObjectWafProfileConstraint("trnameObjectWafProfileConstraint", ObjectWafProfileConstraintArgs.builder()
.contentLength(ObjectWafProfileConstraintContentLengthArgs.builder()
.action("allow")
.length(120)
.log("enable")
.status("disable")
.build())
.profile(trnameObjectWafProfile.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectWafProfile)
.build());
}
}
resources:
trnameObjectWafProfileConstraint:
type: fortimanager:ObjectWafProfileConstraint
properties:
contentLength:
action: allow
length: 120
log: enable
status: disable
profile: ${trnameObjectWafProfile.name}
options:
dependsOn:
- ${trnameObjectWafProfile}
trnameObjectWafProfile:
type: fortimanager:ObjectWafProfile
Create ObjectWafProfileConstraint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWafProfileConstraint(name: string, args: ObjectWafProfileConstraintArgs, opts?: CustomResourceOptions);
@overload
def ObjectWafProfileConstraint(resource_name: str,
args: ObjectWafProfileConstraintInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWafProfileConstraint(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
max_cookie: Optional[ObjectWafProfileConstraintMaxCookieArgs] = None,
exceptions: Optional[Sequence[ObjectWafProfileConstraintExceptionArgs]] = None,
max_range_segment: Optional[ObjectWafProfileConstraintMaxRangeSegmentArgs] = None,
max_url_param: Optional[ObjectWafProfileConstraintMaxUrlParamArgs] = None,
hostname: Optional[ObjectWafProfileConstraintHostnameArgs] = None,
line_length: Optional[ObjectWafProfileConstraintLineLengthArgs] = None,
malformed: Optional[ObjectWafProfileConstraintMalformedArgs] = None,
adom: Optional[str] = None,
version: Optional[ObjectWafProfileConstraintVersionArgs] = None,
dynamic_sort_subtable: Optional[str] = None,
header_length: Optional[ObjectWafProfileConstraintHeaderLengthArgs] = None,
method: Optional[ObjectWafProfileConstraintMethodArgs] = None,
object_waf_profile_constraint_id: Optional[str] = None,
param_length: Optional[ObjectWafProfileConstraintParamLengthArgs] = None,
content_length: Optional[ObjectWafProfileConstraintContentLengthArgs] = None,
scopetype: Optional[str] = None,
url_param_length: Optional[ObjectWafProfileConstraintUrlParamLengthArgs] = None,
max_header_line: Optional[ObjectWafProfileConstraintMaxHeaderLineArgs] = None)
func NewObjectWafProfileConstraint(ctx *Context, name string, args ObjectWafProfileConstraintArgs, opts ...ResourceOption) (*ObjectWafProfileConstraint, error)
public ObjectWafProfileConstraint(string name, ObjectWafProfileConstraintArgs args, CustomResourceOptions? opts = null)
public ObjectWafProfileConstraint(String name, ObjectWafProfileConstraintArgs args)
public ObjectWafProfileConstraint(String name, ObjectWafProfileConstraintArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWafProfileConstraint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ObjectWafProfileConstraintArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ObjectWafProfileConstraintInitArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ObjectWafProfileConstraintArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWafProfileConstraintArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWafProfileConstraintArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var objectWafProfileConstraintResource = new Fortimanager.ObjectWafProfileConstraint("objectWafProfileConstraintResource", new()
{
Profile = "string",
MaxCookie = new Fortimanager.Inputs.ObjectWafProfileConstraintMaxCookieArgs
{
Action = "string",
Log = "string",
MaxCookie = 0,
Severity = "string",
Status = "string",
},
Exceptions = new[]
{
new Fortimanager.Inputs.ObjectWafProfileConstraintExceptionArgs
{
Address = "string",
ContentLength = "string",
HeaderLength = "string",
Hostname = "string",
Id = 0,
LineLength = "string",
Malformed = "string",
MaxCookie = "string",
MaxHeaderLine = "string",
MaxRangeSegment = "string",
MaxUrlParam = "string",
Method = "string",
ParamLength = "string",
Pattern = "string",
Regex = "string",
UrlParamLength = "string",
Version = "string",
},
},
MaxRangeSegment = new Fortimanager.Inputs.ObjectWafProfileConstraintMaxRangeSegmentArgs
{
Action = "string",
Log = "string",
MaxRangeSegment = 0,
Severity = "string",
Status = "string",
},
MaxUrlParam = new Fortimanager.Inputs.ObjectWafProfileConstraintMaxUrlParamArgs
{
Action = "string",
Log = "string",
MaxUrlParam = 0,
Severity = "string",
Status = "string",
},
Hostname = new Fortimanager.Inputs.ObjectWafProfileConstraintHostnameArgs
{
Action = "string",
Log = "string",
Severity = "string",
Status = "string",
},
LineLength = new Fortimanager.Inputs.ObjectWafProfileConstraintLineLengthArgs
{
Action = "string",
Length = 0,
Log = "string",
Severity = "string",
Status = "string",
},
Malformed = new Fortimanager.Inputs.ObjectWafProfileConstraintMalformedArgs
{
Action = "string",
Log = "string",
Severity = "string",
Status = "string",
},
Adom = "string",
Version = new Fortimanager.Inputs.ObjectWafProfileConstraintVersionArgs
{
Action = "string",
Log = "string",
Severity = "string",
Status = "string",
},
DynamicSortSubtable = "string",
HeaderLength = new Fortimanager.Inputs.ObjectWafProfileConstraintHeaderLengthArgs
{
Action = "string",
Length = 0,
Log = "string",
Severity = "string",
Status = "string",
},
Method = new Fortimanager.Inputs.ObjectWafProfileConstraintMethodArgs
{
Action = "string",
Log = "string",
Severity = "string",
Status = "string",
},
ObjectWafProfileConstraintId = "string",
ParamLength = new Fortimanager.Inputs.ObjectWafProfileConstraintParamLengthArgs
{
Action = "string",
Length = 0,
Log = "string",
Severity = "string",
Status = "string",
},
ContentLength = new Fortimanager.Inputs.ObjectWafProfileConstraintContentLengthArgs
{
Action = "string",
Length = 0,
Log = "string",
Severity = "string",
Status = "string",
},
Scopetype = "string",
UrlParamLength = new Fortimanager.Inputs.ObjectWafProfileConstraintUrlParamLengthArgs
{
Action = "string",
Length = 0,
Log = "string",
Severity = "string",
Status = "string",
},
MaxHeaderLine = new Fortimanager.Inputs.ObjectWafProfileConstraintMaxHeaderLineArgs
{
Action = "string",
Log = "string",
MaxHeaderLine = 0,
Severity = "string",
Status = "string",
},
});
example, err := fortimanager.NewObjectWafProfileConstraint(ctx, "objectWafProfileConstraintResource", &fortimanager.ObjectWafProfileConstraintArgs{
Profile: pulumi.String("string"),
MaxCookie: &.ObjectWafProfileConstraintMaxCookieTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
MaxCookie: pulumi.Float64(0),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
Exceptions: .ObjectWafProfileConstraintExceptionTypeArray{
&.ObjectWafProfileConstraintExceptionTypeArgs{
Address: pulumi.String("string"),
ContentLength: pulumi.String("string"),
HeaderLength: pulumi.String("string"),
Hostname: pulumi.String("string"),
Id: pulumi.Float64(0),
LineLength: pulumi.String("string"),
Malformed: pulumi.String("string"),
MaxCookie: pulumi.String("string"),
MaxHeaderLine: pulumi.String("string"),
MaxRangeSegment: pulumi.String("string"),
MaxUrlParam: pulumi.String("string"),
Method: pulumi.String("string"),
ParamLength: pulumi.String("string"),
Pattern: pulumi.String("string"),
Regex: pulumi.String("string"),
UrlParamLength: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
MaxRangeSegment: &.ObjectWafProfileConstraintMaxRangeSegmentTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
MaxRangeSegment: pulumi.Float64(0),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
MaxUrlParam: &.ObjectWafProfileConstraintMaxUrlParamTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
MaxUrlParam: pulumi.Float64(0),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
Hostname: &.ObjectWafProfileConstraintHostnameTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
LineLength: &.ObjectWafProfileConstraintLineLengthTypeArgs{
Action: pulumi.String("string"),
Length: pulumi.Float64(0),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
Malformed: &.ObjectWafProfileConstraintMalformedTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
Adom: pulumi.String("string"),
Version: &.ObjectWafProfileConstraintVersionTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
DynamicSortSubtable: pulumi.String("string"),
HeaderLength: &.ObjectWafProfileConstraintHeaderLengthTypeArgs{
Action: pulumi.String("string"),
Length: pulumi.Float64(0),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
Method: &.ObjectWafProfileConstraintMethodTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
ObjectWafProfileConstraintId: pulumi.String("string"),
ParamLength: &.ObjectWafProfileConstraintParamLengthTypeArgs{
Action: pulumi.String("string"),
Length: pulumi.Float64(0),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
ContentLength: &.ObjectWafProfileConstraintContentLengthTypeArgs{
Action: pulumi.String("string"),
Length: pulumi.Float64(0),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
UrlParamLength: &.ObjectWafProfileConstraintUrlParamLengthTypeArgs{
Action: pulumi.String("string"),
Length: pulumi.Float64(0),
Log: pulumi.String("string"),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
MaxHeaderLine: &.ObjectWafProfileConstraintMaxHeaderLineTypeArgs{
Action: pulumi.String("string"),
Log: pulumi.String("string"),
MaxHeaderLine: pulumi.Float64(0),
Severity: pulumi.String("string"),
Status: pulumi.String("string"),
},
})
var objectWafProfileConstraintResource = new ObjectWafProfileConstraint("objectWafProfileConstraintResource", ObjectWafProfileConstraintArgs.builder()
.profile("string")
.maxCookie(ObjectWafProfileConstraintMaxCookieArgs.builder()
.action("string")
.log("string")
.maxCookie(0)
.severity("string")
.status("string")
.build())
.exceptions(ObjectWafProfileConstraintExceptionArgs.builder()
.address("string")
.contentLength("string")
.headerLength("string")
.hostname("string")
.id(0)
.lineLength("string")
.malformed("string")
.maxCookie("string")
.maxHeaderLine("string")
.maxRangeSegment("string")
.maxUrlParam("string")
.method("string")
.paramLength("string")
.pattern("string")
.regex("string")
.urlParamLength("string")
.version("string")
.build())
.maxRangeSegment(ObjectWafProfileConstraintMaxRangeSegmentArgs.builder()
.action("string")
.log("string")
.maxRangeSegment(0)
.severity("string")
.status("string")
.build())
.maxUrlParam(ObjectWafProfileConstraintMaxUrlParamArgs.builder()
.action("string")
.log("string")
.maxUrlParam(0)
.severity("string")
.status("string")
.build())
.hostname(ObjectWafProfileConstraintHostnameArgs.builder()
.action("string")
.log("string")
.severity("string")
.status("string")
.build())
.lineLength(ObjectWafProfileConstraintLineLengthArgs.builder()
.action("string")
.length(0)
.log("string")
.severity("string")
.status("string")
.build())
.malformed(ObjectWafProfileConstraintMalformedArgs.builder()
.action("string")
.log("string")
.severity("string")
.status("string")
.build())
.adom("string")
.version(ObjectWafProfileConstraintVersionArgs.builder()
.action("string")
.log("string")
.severity("string")
.status("string")
.build())
.dynamicSortSubtable("string")
.headerLength(ObjectWafProfileConstraintHeaderLengthArgs.builder()
.action("string")
.length(0)
.log("string")
.severity("string")
.status("string")
.build())
.method(ObjectWafProfileConstraintMethodArgs.builder()
.action("string")
.log("string")
.severity("string")
.status("string")
.build())
.objectWafProfileConstraintId("string")
.paramLength(ObjectWafProfileConstraintParamLengthArgs.builder()
.action("string")
.length(0)
.log("string")
.severity("string")
.status("string")
.build())
.contentLength(ObjectWafProfileConstraintContentLengthArgs.builder()
.action("string")
.length(0)
.log("string")
.severity("string")
.status("string")
.build())
.scopetype("string")
.urlParamLength(ObjectWafProfileConstraintUrlParamLengthArgs.builder()
.action("string")
.length(0)
.log("string")
.severity("string")
.status("string")
.build())
.maxHeaderLine(ObjectWafProfileConstraintMaxHeaderLineArgs.builder()
.action("string")
.log("string")
.maxHeaderLine(0)
.severity("string")
.status("string")
.build())
.build());
object_waf_profile_constraint_resource = fortimanager.ObjectWafProfileConstraint("objectWafProfileConstraintResource",
profile="string",
max_cookie={
"action": "string",
"log": "string",
"max_cookie": 0,
"severity": "string",
"status": "string",
},
exceptions=[{
"address": "string",
"content_length": "string",
"header_length": "string",
"hostname": "string",
"id": 0,
"line_length": "string",
"malformed": "string",
"max_cookie": "string",
"max_header_line": "string",
"max_range_segment": "string",
"max_url_param": "string",
"method": "string",
"param_length": "string",
"pattern": "string",
"regex": "string",
"url_param_length": "string",
"version": "string",
}],
max_range_segment={
"action": "string",
"log": "string",
"max_range_segment": 0,
"severity": "string",
"status": "string",
},
max_url_param={
"action": "string",
"log": "string",
"max_url_param": 0,
"severity": "string",
"status": "string",
},
hostname={
"action": "string",
"log": "string",
"severity": "string",
"status": "string",
},
line_length={
"action": "string",
"length": 0,
"log": "string",
"severity": "string",
"status": "string",
},
malformed={
"action": "string",
"log": "string",
"severity": "string",
"status": "string",
},
adom="string",
version={
"action": "string",
"log": "string",
"severity": "string",
"status": "string",
},
dynamic_sort_subtable="string",
header_length={
"action": "string",
"length": 0,
"log": "string",
"severity": "string",
"status": "string",
},
method={
"action": "string",
"log": "string",
"severity": "string",
"status": "string",
},
object_waf_profile_constraint_id="string",
param_length={
"action": "string",
"length": 0,
"log": "string",
"severity": "string",
"status": "string",
},
content_length={
"action": "string",
"length": 0,
"log": "string",
"severity": "string",
"status": "string",
},
scopetype="string",
url_param_length={
"action": "string",
"length": 0,
"log": "string",
"severity": "string",
"status": "string",
},
max_header_line={
"action": "string",
"log": "string",
"max_header_line": 0,
"severity": "string",
"status": "string",
})
const objectWafProfileConstraintResource = new fortimanager.ObjectWafProfileConstraint("objectWafProfileConstraintResource", {
profile: "string",
maxCookie: {
action: "string",
log: "string",
maxCookie: 0,
severity: "string",
status: "string",
},
exceptions: [{
address: "string",
contentLength: "string",
headerLength: "string",
hostname: "string",
id: 0,
lineLength: "string",
malformed: "string",
maxCookie: "string",
maxHeaderLine: "string",
maxRangeSegment: "string",
maxUrlParam: "string",
method: "string",
paramLength: "string",
pattern: "string",
regex: "string",
urlParamLength: "string",
version: "string",
}],
maxRangeSegment: {
action: "string",
log: "string",
maxRangeSegment: 0,
severity: "string",
status: "string",
},
maxUrlParam: {
action: "string",
log: "string",
maxUrlParam: 0,
severity: "string",
status: "string",
},
hostname: {
action: "string",
log: "string",
severity: "string",
status: "string",
},
lineLength: {
action: "string",
length: 0,
log: "string",
severity: "string",
status: "string",
},
malformed: {
action: "string",
log: "string",
severity: "string",
status: "string",
},
adom: "string",
version: {
action: "string",
log: "string",
severity: "string",
status: "string",
},
dynamicSortSubtable: "string",
headerLength: {
action: "string",
length: 0,
log: "string",
severity: "string",
status: "string",
},
method: {
action: "string",
log: "string",
severity: "string",
status: "string",
},
objectWafProfileConstraintId: "string",
paramLength: {
action: "string",
length: 0,
log: "string",
severity: "string",
status: "string",
},
contentLength: {
action: "string",
length: 0,
log: "string",
severity: "string",
status: "string",
},
scopetype: "string",
urlParamLength: {
action: "string",
length: 0,
log: "string",
severity: "string",
status: "string",
},
maxHeaderLine: {
action: "string",
log: "string",
maxHeaderLine: 0,
severity: "string",
status: "string",
},
});
type: fortimanager:ObjectWafProfileConstraint
properties:
adom: string
contentLength:
action: string
length: 0
log: string
severity: string
status: string
dynamicSortSubtable: string
exceptions:
- address: string
contentLength: string
headerLength: string
hostname: string
id: 0
lineLength: string
malformed: string
maxCookie: string
maxHeaderLine: string
maxRangeSegment: string
maxUrlParam: string
method: string
paramLength: string
pattern: string
regex: string
urlParamLength: string
version: string
headerLength:
action: string
length: 0
log: string
severity: string
status: string
hostname:
action: string
log: string
severity: string
status: string
lineLength:
action: string
length: 0
log: string
severity: string
status: string
malformed:
action: string
log: string
severity: string
status: string
maxCookie:
action: string
log: string
maxCookie: 0
severity: string
status: string
maxHeaderLine:
action: string
log: string
maxHeaderLine: 0
severity: string
status: string
maxRangeSegment:
action: string
log: string
maxRangeSegment: 0
severity: string
status: string
maxUrlParam:
action: string
log: string
maxUrlParam: 0
severity: string
status: string
method:
action: string
log: string
severity: string
status: string
objectWafProfileConstraintId: string
paramLength:
action: string
length: 0
log: string
severity: string
status: string
profile: string
scopetype: string
urlParamLength:
action: string
length: 0
log: string
severity: string
status: string
version:
action: string
log: string
severity: string
status: string
ObjectWafProfileConstraint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ObjectWafProfileConstraint resource accepts the following input properties:
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Content
Length ObjectWaf Profile Constraint Content Length - Content-Length. The structure of
content_length
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exceptions
List<Object
Waf Profile Constraint Exception> - Exception. The structure of
exception
block is documented below. - Header
Length ObjectWaf Profile Constraint Header Length - Header-Length. The structure of
header_length
block is documented below. - Hostname
Object
Waf Profile Constraint Hostname - Hostname. The structure of
hostname
block is documented below. - Line
Length ObjectWaf Profile Constraint Line Length - Line-Length. The structure of
line_length
block is documented below. - Malformed
Object
Waf Profile Constraint Malformed - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie - Max-Cookie. The structure of
max_cookie
block is documented below. - Max
Header ObjectLine Waf Profile Constraint Max Header Line - Max-Header-Line. The structure of
max_header_line
block is documented below. - Max
Range ObjectSegment Waf Profile Constraint Max Range Segment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - Max
Url ObjectParam Waf Profile Constraint Max Url Param - Max-Url-Param. The structure of
max_url_param
block is documented below. - Method
Object
Waf Profile Constraint Method - Method. The structure of
method
block is documented below. - Object
Waf stringProfile Constraint Id - an identifier for the resource.
- Param
Length ObjectWaf Profile Constraint Param Length - Param-Length. The structure of
param_length
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Url
Param ObjectLength Waf Profile Constraint Url Param Length - Url-Param-Length. The structure of
url_param_length
block is documented below. - Version
Object
Waf Profile Constraint Version - Version. The structure of
version
block is documented below.
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Content
Length ObjectWaf Profile Constraint Content Length Type Args - Content-Length. The structure of
content_length
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exceptions
[]Object
Waf Profile Constraint Exception Type Args - Exception. The structure of
exception
block is documented below. - Header
Length ObjectWaf Profile Constraint Header Length Type Args - Header-Length. The structure of
header_length
block is documented below. - Hostname
Object
Waf Profile Constraint Hostname Type Args - Hostname. The structure of
hostname
block is documented below. - Line
Length ObjectWaf Profile Constraint Line Length Type Args - Line-Length. The structure of
line_length
block is documented below. - Malformed
Object
Waf Profile Constraint Malformed Type Args - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie Type Args - Max-Cookie. The structure of
max_cookie
block is documented below. - Max
Header ObjectLine Waf Profile Constraint Max Header Line Type Args - Max-Header-Line. The structure of
max_header_line
block is documented below. - Max
Range ObjectSegment Waf Profile Constraint Max Range Segment Type Args - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - Max
Url ObjectParam Waf Profile Constraint Max Url Param Type Args - Max-Url-Param. The structure of
max_url_param
block is documented below. - Method
Object
Waf Profile Constraint Method Type Args - Method. The structure of
method
block is documented below. - Object
Waf stringProfile Constraint Id - an identifier for the resource.
- Param
Length ObjectWaf Profile Constraint Param Length Type Args - Param-Length. The structure of
param_length
block is documented below. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Url
Param ObjectLength Waf Profile Constraint Url Param Length Type Args - Url-Param-Length. The structure of
url_param_length
block is documented below. - Version
Object
Waf Profile Constraint Version Type Args - Version. The structure of
version
block is documented below.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content
Length ObjectWaf Profile Constraint Content Length - Content-Length. The structure of
content_length
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions
List<Object
Waf Profile Constraint Exception> - Exception. The structure of
exception
block is documented below. - header
Length ObjectWaf Profile Constraint Header Length - Header-Length. The structure of
header_length
block is documented below. - hostname
Object
Waf Profile Constraint Hostname - Hostname. The structure of
hostname
block is documented below. - line
Length ObjectWaf Profile Constraint Line Length - Line-Length. The structure of
line_length
block is documented below. - malformed
Object
Waf Profile Constraint Malformed - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie - Max-Cookie. The structure of
max_cookie
block is documented below. - max
Header ObjectLine Waf Profile Constraint Max Header Line - Max-Header-Line. The structure of
max_header_line
block is documented below. - max
Range ObjectSegment Waf Profile Constraint Max Range Segment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max
Url ObjectParam Waf Profile Constraint Max Url Param - Max-Url-Param. The structure of
max_url_param
block is documented below. - method
Object
Waf Profile Constraint Method - Method. The structure of
method
block is documented below. - object
Waf StringProfile Constraint Id - an identifier for the resource.
- param
Length ObjectWaf Profile Constraint Param Length - Param-Length. The structure of
param_length
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url
Param ObjectLength Waf Profile Constraint Url Param Length - Url-Param-Length. The structure of
url_param_length
block is documented below. - version
Object
Waf Profile Constraint Version - Version. The structure of
version
block is documented below.
- profile string
- Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content
Length ObjectWaf Profile Constraint Content Length - Content-Length. The structure of
content_length
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions
Object
Waf Profile Constraint Exception[] - Exception. The structure of
exception
block is documented below. - header
Length ObjectWaf Profile Constraint Header Length - Header-Length. The structure of
header_length
block is documented below. - hostname
Object
Waf Profile Constraint Hostname - Hostname. The structure of
hostname
block is documented below. - line
Length ObjectWaf Profile Constraint Line Length - Line-Length. The structure of
line_length
block is documented below. - malformed
Object
Waf Profile Constraint Malformed - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie - Max-Cookie. The structure of
max_cookie
block is documented below. - max
Header ObjectLine Waf Profile Constraint Max Header Line - Max-Header-Line. The structure of
max_header_line
block is documented below. - max
Range ObjectSegment Waf Profile Constraint Max Range Segment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max
Url ObjectParam Waf Profile Constraint Max Url Param - Max-Url-Param. The structure of
max_url_param
block is documented below. - method
Object
Waf Profile Constraint Method - Method. The structure of
method
block is documented below. - object
Waf stringProfile Constraint Id - an identifier for the resource.
- param
Length ObjectWaf Profile Constraint Param Length - Param-Length. The structure of
param_length
block is documented below. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url
Param ObjectLength Waf Profile Constraint Url Param Length - Url-Param-Length. The structure of
url_param_length
block is documented below. - version
Object
Waf Profile Constraint Version - Version. The structure of
version
block is documented below.
- profile str
- Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content_
length ObjectWaf Profile Constraint Content Length Args - Content-Length. The structure of
content_length
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions
Sequence[Object
Waf Profile Constraint Exception Args] - Exception. The structure of
exception
block is documented below. - header_
length ObjectWaf Profile Constraint Header Length Args - Header-Length. The structure of
header_length
block is documented below. - hostname
Object
Waf Profile Constraint Hostname Args - Hostname. The structure of
hostname
block is documented below. - line_
length ObjectWaf Profile Constraint Line Length Args - Line-Length. The structure of
line_length
block is documented below. - malformed
Object
Waf Profile Constraint Malformed Args - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie Args - Max-Cookie. The structure of
max_cookie
block is documented below. - max_
header_ Objectline Waf Profile Constraint Max Header Line Args - Max-Header-Line. The structure of
max_header_line
block is documented below. - max_
range_ Objectsegment Waf Profile Constraint Max Range Segment Args - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max_
url_ Objectparam Waf Profile Constraint Max Url Param Args - Max-Url-Param. The structure of
max_url_param
block is documented below. - method
Object
Waf Profile Constraint Method Args - Method. The structure of
method
block is documented below. - object_
waf_ strprofile_ constraint_ id - an identifier for the resource.
- param_
length ObjectWaf Profile Constraint Param Length Args - Param-Length. The structure of
param_length
block is documented below. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url_
param_ Objectlength Waf Profile Constraint Url Param Length Args - Url-Param-Length. The structure of
url_param_length
block is documented below. - version
Object
Waf Profile Constraint Version Args - Version. The structure of
version
block is documented below.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content
Length Property Map - Content-Length. The structure of
content_length
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions List<Property Map>
- Exception. The structure of
exception
block is documented below. - header
Length Property Map - Header-Length. The structure of
header_length
block is documented below. - hostname Property Map
- Hostname. The structure of
hostname
block is documented below. - line
Length Property Map - Line-Length. The structure of
line_length
block is documented below. - malformed Property Map
- Malformed. The structure of
malformed
block is documented below. - Property Map
- Max-Cookie. The structure of
max_cookie
block is documented below. - max
Header Property MapLine - Max-Header-Line. The structure of
max_header_line
block is documented below. - max
Range Property MapSegment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max
Url Property MapParam - Max-Url-Param. The structure of
max_url_param
block is documented below. - method Property Map
- Method. The structure of
method
block is documented below. - object
Waf StringProfile Constraint Id - an identifier for the resource.
- param
Length Property Map - Param-Length. The structure of
param_length
block is documented below. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url
Param Property MapLength - Url-Param-Length. The structure of
url_param_length
block is documented below. - version Property Map
- Version. The structure of
version
block is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWafProfileConstraint resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ObjectWafProfileConstraint Resource
Get an existing ObjectWafProfileConstraint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ObjectWafProfileConstraintState, opts?: CustomResourceOptions): ObjectWafProfileConstraint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
content_length: Optional[ObjectWafProfileConstraintContentLengthArgs] = None,
dynamic_sort_subtable: Optional[str] = None,
exceptions: Optional[Sequence[ObjectWafProfileConstraintExceptionArgs]] = None,
header_length: Optional[ObjectWafProfileConstraintHeaderLengthArgs] = None,
hostname: Optional[ObjectWafProfileConstraintHostnameArgs] = None,
line_length: Optional[ObjectWafProfileConstraintLineLengthArgs] = None,
malformed: Optional[ObjectWafProfileConstraintMalformedArgs] = None,
max_cookie: Optional[ObjectWafProfileConstraintMaxCookieArgs] = None,
max_header_line: Optional[ObjectWafProfileConstraintMaxHeaderLineArgs] = None,
max_range_segment: Optional[ObjectWafProfileConstraintMaxRangeSegmentArgs] = None,
max_url_param: Optional[ObjectWafProfileConstraintMaxUrlParamArgs] = None,
method: Optional[ObjectWafProfileConstraintMethodArgs] = None,
object_waf_profile_constraint_id: Optional[str] = None,
param_length: Optional[ObjectWafProfileConstraintParamLengthArgs] = None,
profile: Optional[str] = None,
scopetype: Optional[str] = None,
url_param_length: Optional[ObjectWafProfileConstraintUrlParamLengthArgs] = None,
version: Optional[ObjectWafProfileConstraintVersionArgs] = None) -> ObjectWafProfileConstraint
func GetObjectWafProfileConstraint(ctx *Context, name string, id IDInput, state *ObjectWafProfileConstraintState, opts ...ResourceOption) (*ObjectWafProfileConstraint, error)
public static ObjectWafProfileConstraint Get(string name, Input<string> id, ObjectWafProfileConstraintState? state, CustomResourceOptions? opts = null)
public static ObjectWafProfileConstraint get(String name, Output<String> id, ObjectWafProfileConstraintState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWafProfileConstraint get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Content
Length ObjectWaf Profile Constraint Content Length - Content-Length. The structure of
content_length
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exceptions
List<Object
Waf Profile Constraint Exception> - Exception. The structure of
exception
block is documented below. - Header
Length ObjectWaf Profile Constraint Header Length - Header-Length. The structure of
header_length
block is documented below. - Hostname
Object
Waf Profile Constraint Hostname - Hostname. The structure of
hostname
block is documented below. - Line
Length ObjectWaf Profile Constraint Line Length - Line-Length. The structure of
line_length
block is documented below. - Malformed
Object
Waf Profile Constraint Malformed - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie - Max-Cookie. The structure of
max_cookie
block is documented below. - Max
Header ObjectLine Waf Profile Constraint Max Header Line - Max-Header-Line. The structure of
max_header_line
block is documented below. - Max
Range ObjectSegment Waf Profile Constraint Max Range Segment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - Max
Url ObjectParam Waf Profile Constraint Max Url Param - Max-Url-Param. The structure of
max_url_param
block is documented below. - Method
Object
Waf Profile Constraint Method - Method. The structure of
method
block is documented below. - Object
Waf stringProfile Constraint Id - an identifier for the resource.
- Param
Length ObjectWaf Profile Constraint Param Length - Param-Length. The structure of
param_length
block is documented below. - Profile string
- Profile.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Url
Param ObjectLength Waf Profile Constraint Url Param Length - Url-Param-Length. The structure of
url_param_length
block is documented below. - Version
Object
Waf Profile Constraint Version - Version. The structure of
version
block is documented below.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Content
Length ObjectWaf Profile Constraint Content Length Type Args - Content-Length. The structure of
content_length
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Exceptions
[]Object
Waf Profile Constraint Exception Type Args - Exception. The structure of
exception
block is documented below. - Header
Length ObjectWaf Profile Constraint Header Length Type Args - Header-Length. The structure of
header_length
block is documented below. - Hostname
Object
Waf Profile Constraint Hostname Type Args - Hostname. The structure of
hostname
block is documented below. - Line
Length ObjectWaf Profile Constraint Line Length Type Args - Line-Length. The structure of
line_length
block is documented below. - Malformed
Object
Waf Profile Constraint Malformed Type Args - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie Type Args - Max-Cookie. The structure of
max_cookie
block is documented below. - Max
Header ObjectLine Waf Profile Constraint Max Header Line Type Args - Max-Header-Line. The structure of
max_header_line
block is documented below. - Max
Range ObjectSegment Waf Profile Constraint Max Range Segment Type Args - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - Max
Url ObjectParam Waf Profile Constraint Max Url Param Type Args - Max-Url-Param. The structure of
max_url_param
block is documented below. - Method
Object
Waf Profile Constraint Method Type Args - Method. The structure of
method
block is documented below. - Object
Waf stringProfile Constraint Id - an identifier for the resource.
- Param
Length ObjectWaf Profile Constraint Param Length Type Args - Param-Length. The structure of
param_length
block is documented below. - Profile string
- Profile.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Url
Param ObjectLength Waf Profile Constraint Url Param Length Type Args - Url-Param-Length. The structure of
url_param_length
block is documented below. - Version
Object
Waf Profile Constraint Version Type Args - Version. The structure of
version
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content
Length ObjectWaf Profile Constraint Content Length - Content-Length. The structure of
content_length
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions
List<Object
Waf Profile Constraint Exception> - Exception. The structure of
exception
block is documented below. - header
Length ObjectWaf Profile Constraint Header Length - Header-Length. The structure of
header_length
block is documented below. - hostname
Object
Waf Profile Constraint Hostname - Hostname. The structure of
hostname
block is documented below. - line
Length ObjectWaf Profile Constraint Line Length - Line-Length. The structure of
line_length
block is documented below. - malformed
Object
Waf Profile Constraint Malformed - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie - Max-Cookie. The structure of
max_cookie
block is documented below. - max
Header ObjectLine Waf Profile Constraint Max Header Line - Max-Header-Line. The structure of
max_header_line
block is documented below. - max
Range ObjectSegment Waf Profile Constraint Max Range Segment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max
Url ObjectParam Waf Profile Constraint Max Url Param - Max-Url-Param. The structure of
max_url_param
block is documented below. - method
Object
Waf Profile Constraint Method - Method. The structure of
method
block is documented below. - object
Waf StringProfile Constraint Id - an identifier for the resource.
- param
Length ObjectWaf Profile Constraint Param Length - Param-Length. The structure of
param_length
block is documented below. - profile String
- Profile.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url
Param ObjectLength Waf Profile Constraint Url Param Length - Url-Param-Length. The structure of
url_param_length
block is documented below. - version
Object
Waf Profile Constraint Version - Version. The structure of
version
block is documented below.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content
Length ObjectWaf Profile Constraint Content Length - Content-Length. The structure of
content_length
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions
Object
Waf Profile Constraint Exception[] - Exception. The structure of
exception
block is documented below. - header
Length ObjectWaf Profile Constraint Header Length - Header-Length. The structure of
header_length
block is documented below. - hostname
Object
Waf Profile Constraint Hostname - Hostname. The structure of
hostname
block is documented below. - line
Length ObjectWaf Profile Constraint Line Length - Line-Length. The structure of
line_length
block is documented below. - malformed
Object
Waf Profile Constraint Malformed - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie - Max-Cookie. The structure of
max_cookie
block is documented below. - max
Header ObjectLine Waf Profile Constraint Max Header Line - Max-Header-Line. The structure of
max_header_line
block is documented below. - max
Range ObjectSegment Waf Profile Constraint Max Range Segment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max
Url ObjectParam Waf Profile Constraint Max Url Param - Max-Url-Param. The structure of
max_url_param
block is documented below. - method
Object
Waf Profile Constraint Method - Method. The structure of
method
block is documented below. - object
Waf stringProfile Constraint Id - an identifier for the resource.
- param
Length ObjectWaf Profile Constraint Param Length - Param-Length. The structure of
param_length
block is documented below. - profile string
- Profile.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url
Param ObjectLength Waf Profile Constraint Url Param Length - Url-Param-Length. The structure of
url_param_length
block is documented below. - version
Object
Waf Profile Constraint Version - Version. The structure of
version
block is documented below.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content_
length ObjectWaf Profile Constraint Content Length Args - Content-Length. The structure of
content_length
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions
Sequence[Object
Waf Profile Constraint Exception Args] - Exception. The structure of
exception
block is documented below. - header_
length ObjectWaf Profile Constraint Header Length Args - Header-Length. The structure of
header_length
block is documented below. - hostname
Object
Waf Profile Constraint Hostname Args - Hostname. The structure of
hostname
block is documented below. - line_
length ObjectWaf Profile Constraint Line Length Args - Line-Length. The structure of
line_length
block is documented below. - malformed
Object
Waf Profile Constraint Malformed Args - Malformed. The structure of
malformed
block is documented below. - Object
Waf Profile Constraint Max Cookie Args - Max-Cookie. The structure of
max_cookie
block is documented below. - max_
header_ Objectline Waf Profile Constraint Max Header Line Args - Max-Header-Line. The structure of
max_header_line
block is documented below. - max_
range_ Objectsegment Waf Profile Constraint Max Range Segment Args - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max_
url_ Objectparam Waf Profile Constraint Max Url Param Args - Max-Url-Param. The structure of
max_url_param
block is documented below. - method
Object
Waf Profile Constraint Method Args - Method. The structure of
method
block is documented below. - object_
waf_ strprofile_ constraint_ id - an identifier for the resource.
- param_
length ObjectWaf Profile Constraint Param Length Args - Param-Length. The structure of
param_length
block is documented below. - profile str
- Profile.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url_
param_ Objectlength Waf Profile Constraint Url Param Length Args - Url-Param-Length. The structure of
url_param_length
block is documented below. - version
Object
Waf Profile Constraint Version Args - Version. The structure of
version
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - content
Length Property Map - Content-Length. The structure of
content_length
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- exceptions List<Property Map>
- Exception. The structure of
exception
block is documented below. - header
Length Property Map - Header-Length. The structure of
header_length
block is documented below. - hostname Property Map
- Hostname. The structure of
hostname
block is documented below. - line
Length Property Map - Line-Length. The structure of
line_length
block is documented below. - malformed Property Map
- Malformed. The structure of
malformed
block is documented below. - Property Map
- Max-Cookie. The structure of
max_cookie
block is documented below. - max
Header Property MapLine - Max-Header-Line. The structure of
max_header_line
block is documented below. - max
Range Property MapSegment - Max-Range-Segment. The structure of
max_range_segment
block is documented below. - max
Url Property MapParam - Max-Url-Param. The structure of
max_url_param
block is documented below. - method Property Map
- Method. The structure of
method
block is documented below. - object
Waf StringProfile Constraint Id - an identifier for the resource.
- param
Length Property Map - Param-Length. The structure of
param_length
block is documented below. - profile String
- Profile.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - url
Param Property MapLength - Url-Param-Length. The structure of
url_param_length
block is documented below. - version Property Map
- Version. The structure of
version
block is documented below.
Supporting Types
ObjectWafProfileConstraintContentLength, ObjectWafProfileConstraintContentLengthArgs
- Action string
- Action. Valid values:
allow
,block
. - Length double
- Length of HTTP content in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Length float64
- Length of HTTP content in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Double
- Length of HTTP content in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - length number
- Length of HTTP content in bytes (0 to 2147483647).
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Number
- Length of HTTP content in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintException, ObjectWafProfileConstraintExceptionArgs
- Address string
- Host address.
- Content
Length string - HTTP content length in request. Valid values:
disable
,enable
. - Header
Length string - HTTP header length in request. Valid values:
disable
,enable
. - Hostname string
- Enable/disable hostname check. Valid values:
disable
,enable
. - Id double
- Exception ID.
- Line
Length string - HTTP line length in request. Valid values:
disable
,enable
. - Malformed string
- Enable/disable malformed HTTP request check. Valid values:
disable
,enable
. - string
- Maximum number of cookies in HTTP request. Valid values:
disable
,enable
. - Max
Header stringLine - Maximum number of HTTP header line. Valid values:
disable
,enable
. - Max
Range stringSegment - Maximum number of range segments in HTTP range line. Valid values:
disable
,enable
. - Max
Url stringParam - Maximum number of parameters in URL. Valid values:
disable
,enable
. - Method string
- Enable/disable HTTP method check. Valid values:
disable
,enable
. - Param
Length string - Maximum length of parameter in URL, HTTP POST request or HTTP body. Valid values:
disable
,enable
. - Pattern string
- URL pattern.
- Regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - Url
Param stringLength - Maximum length of parameter in URL. Valid values:
disable
,enable
. - Version string
- Enable/disable HTTP version check. Valid values:
disable
,enable
.
- Address string
- Host address.
- Content
Length string - HTTP content length in request. Valid values:
disable
,enable
. - Header
Length string - HTTP header length in request. Valid values:
disable
,enable
. - Hostname string
- Enable/disable hostname check. Valid values:
disable
,enable
. - Id float64
- Exception ID.
- Line
Length string - HTTP line length in request. Valid values:
disable
,enable
. - Malformed string
- Enable/disable malformed HTTP request check. Valid values:
disable
,enable
. - string
- Maximum number of cookies in HTTP request. Valid values:
disable
,enable
. - Max
Header stringLine - Maximum number of HTTP header line. Valid values:
disable
,enable
. - Max
Range stringSegment - Maximum number of range segments in HTTP range line. Valid values:
disable
,enable
. - Max
Url stringParam - Maximum number of parameters in URL. Valid values:
disable
,enable
. - Method string
- Enable/disable HTTP method check. Valid values:
disable
,enable
. - Param
Length string - Maximum length of parameter in URL, HTTP POST request or HTTP body. Valid values:
disable
,enable
. - Pattern string
- URL pattern.
- Regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - Url
Param stringLength - Maximum length of parameter in URL. Valid values:
disable
,enable
. - Version string
- Enable/disable HTTP version check. Valid values:
disable
,enable
.
- address String
- Host address.
- content
Length String - HTTP content length in request. Valid values:
disable
,enable
. - header
Length String - HTTP header length in request. Valid values:
disable
,enable
. - hostname String
- Enable/disable hostname check. Valid values:
disable
,enable
. - id Double
- Exception ID.
- line
Length String - HTTP line length in request. Valid values:
disable
,enable
. - malformed String
- Enable/disable malformed HTTP request check. Valid values:
disable
,enable
. - String
- Maximum number of cookies in HTTP request. Valid values:
disable
,enable
. - max
Header StringLine - Maximum number of HTTP header line. Valid values:
disable
,enable
. - max
Range StringSegment - Maximum number of range segments in HTTP range line. Valid values:
disable
,enable
. - max
Url StringParam - Maximum number of parameters in URL. Valid values:
disable
,enable
. - method String
- Enable/disable HTTP method check. Valid values:
disable
,enable
. - param
Length String - Maximum length of parameter in URL, HTTP POST request or HTTP body. Valid values:
disable
,enable
. - pattern String
- URL pattern.
- regex String
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - url
Param StringLength - Maximum length of parameter in URL. Valid values:
disable
,enable
. - version String
- Enable/disable HTTP version check. Valid values:
disable
,enable
.
- address string
- Host address.
- content
Length string - HTTP content length in request. Valid values:
disable
,enable
. - header
Length string - HTTP header length in request. Valid values:
disable
,enable
. - hostname string
- Enable/disable hostname check. Valid values:
disable
,enable
. - id number
- Exception ID.
- line
Length string - HTTP line length in request. Valid values:
disable
,enable
. - malformed string
- Enable/disable malformed HTTP request check. Valid values:
disable
,enable
. - string
- Maximum number of cookies in HTTP request. Valid values:
disable
,enable
. - max
Header stringLine - Maximum number of HTTP header line. Valid values:
disable
,enable
. - max
Range stringSegment - Maximum number of range segments in HTTP range line. Valid values:
disable
,enable
. - max
Url stringParam - Maximum number of parameters in URL. Valid values:
disable
,enable
. - method string
- Enable/disable HTTP method check. Valid values:
disable
,enable
. - param
Length string - Maximum length of parameter in URL, HTTP POST request or HTTP body. Valid values:
disable
,enable
. - pattern string
- URL pattern.
- regex string
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - url
Param stringLength - Maximum length of parameter in URL. Valid values:
disable
,enable
. - version string
- Enable/disable HTTP version check. Valid values:
disable
,enable
.
- address str
- Host address.
- content_
length str - HTTP content length in request. Valid values:
disable
,enable
. - header_
length str - HTTP header length in request. Valid values:
disable
,enable
. - hostname str
- Enable/disable hostname check. Valid values:
disable
,enable
. - id float
- Exception ID.
- line_
length str - HTTP line length in request. Valid values:
disable
,enable
. - malformed str
- Enable/disable malformed HTTP request check. Valid values:
disable
,enable
. - str
- Maximum number of cookies in HTTP request. Valid values:
disable
,enable
. - max_
header_ strline - Maximum number of HTTP header line. Valid values:
disable
,enable
. - max_
range_ strsegment - Maximum number of range segments in HTTP range line. Valid values:
disable
,enable
. - max_
url_ strparam - Maximum number of parameters in URL. Valid values:
disable
,enable
. - method str
- Enable/disable HTTP method check. Valid values:
disable
,enable
. - param_
length str - Maximum length of parameter in URL, HTTP POST request or HTTP body. Valid values:
disable
,enable
. - pattern str
- URL pattern.
- regex str
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - url_
param_ strlength - Maximum length of parameter in URL. Valid values:
disable
,enable
. - version str
- Enable/disable HTTP version check. Valid values:
disable
,enable
.
- address String
- Host address.
- content
Length String - HTTP content length in request. Valid values:
disable
,enable
. - header
Length String - HTTP header length in request. Valid values:
disable
,enable
. - hostname String
- Enable/disable hostname check. Valid values:
disable
,enable
. - id Number
- Exception ID.
- line
Length String - HTTP line length in request. Valid values:
disable
,enable
. - malformed String
- Enable/disable malformed HTTP request check. Valid values:
disable
,enable
. - String
- Maximum number of cookies in HTTP request. Valid values:
disable
,enable
. - max
Header StringLine - Maximum number of HTTP header line. Valid values:
disable
,enable
. - max
Range StringSegment - Maximum number of range segments in HTTP range line. Valid values:
disable
,enable
. - max
Url StringParam - Maximum number of parameters in URL. Valid values:
disable
,enable
. - method String
- Enable/disable HTTP method check. Valid values:
disable
,enable
. - param
Length String - Maximum length of parameter in URL, HTTP POST request or HTTP body. Valid values:
disable
,enable
. - pattern String
- URL pattern.
- regex String
- Enable/disable regular expression based pattern match. Valid values:
disable
,enable
. - url
Param StringLength - Maximum length of parameter in URL. Valid values:
disable
,enable
. - version String
- Enable/disable HTTP version check. Valid values:
disable
,enable
.
ObjectWafProfileConstraintHeaderLength, ObjectWafProfileConstraintHeaderLengthArgs
- Action string
- Action. Valid values:
allow
,block
. - Length double
- Length of HTTP header in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Length float64
- Length of HTTP header in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Double
- Length of HTTP header in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - length number
- Length of HTTP header in bytes (0 to 2147483647).
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Number
- Length of HTTP header in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintHostname, ObjectWafProfileConstraintHostnameArgs
ObjectWafProfileConstraintLineLength, ObjectWafProfileConstraintLineLengthArgs
- Action string
- Action. Valid values:
allow
,block
. - Length double
- Length of HTTP line in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Length float64
- Length of HTTP line in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Double
- Length of HTTP line in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - length number
- Length of HTTP line in bytes (0 to 2147483647).
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Number
- Length of HTTP line in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintMalformed, ObjectWafProfileConstraintMalformedArgs
ObjectWafProfileConstraintMaxCookie, ObjectWafProfileConstraintMaxCookieArgs
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - double
- Maximum number of cookies in HTTP request (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - float64
- Maximum number of cookies in HTTP request (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - Double
- Maximum number of cookies in HTTP request (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - log string
- Enable/disable logging. Valid values:
disable
,enable
. - number
- Maximum number of cookies in HTTP request (0 to 2147483647).
- severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - Number
- Maximum number of cookies in HTTP request (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintMaxHeaderLine, ObjectWafProfileConstraintMaxHeaderLineArgs
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Max
Header doubleLine - Maximum number HTTP header lines (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Max
Header float64Line - Maximum number HTTP header lines (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - max
Header DoubleLine - Maximum number HTTP header lines (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - log string
- Enable/disable logging. Valid values:
disable
,enable
. - max
Header numberLine - Maximum number HTTP header lines (0 to 2147483647).
- severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action str
- Action. Valid values:
allow
,block
. - log str
- Enable/disable logging. Valid values:
disable
,enable
. - max_
header_ floatline - Maximum number HTTP header lines (0 to 2147483647).
- severity str
- Severity. Valid values:
low
,medium
,high
. - status str
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - max
Header NumberLine - Maximum number HTTP header lines (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintMaxRangeSegment, ObjectWafProfileConstraintMaxRangeSegmentArgs
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Max
Range doubleSegment - Maximum number of range segments in HTTP range line (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Max
Range float64Segment - Maximum number of range segments in HTTP range line (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - max
Range DoubleSegment - Maximum number of range segments in HTTP range line (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - log string
- Enable/disable logging. Valid values:
disable
,enable
. - max
Range numberSegment - Maximum number of range segments in HTTP range line (0 to 2147483647).
- severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action str
- Action. Valid values:
allow
,block
. - log str
- Enable/disable logging. Valid values:
disable
,enable
. - max_
range_ floatsegment - Maximum number of range segments in HTTP range line (0 to 2147483647).
- severity str
- Severity. Valid values:
low
,medium
,high
. - status str
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - max
Range NumberSegment - Maximum number of range segments in HTTP range line (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintMaxUrlParam, ObjectWafProfileConstraintMaxUrlParamArgs
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Max
Url doubleParam - Maximum number of parameters in URL (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Max
Url float64Param - Maximum number of parameters in URL (0 to 2147483647).
- Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - max
Url DoubleParam - Maximum number of parameters in URL (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - log string
- Enable/disable logging. Valid values:
disable
,enable
. - max
Url numberParam - Maximum number of parameters in URL (0 to 2147483647).
- severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action str
- Action. Valid values:
allow
,block
. - log str
- Enable/disable logging. Valid values:
disable
,enable
. - max_
url_ floatparam - Maximum number of parameters in URL (0 to 2147483647).
- severity str
- Severity. Valid values:
low
,medium
,high
. - status str
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - log String
- Enable/disable logging. Valid values:
disable
,enable
. - max
Url NumberParam - Maximum number of parameters in URL (0 to 2147483647).
- severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintMethod, ObjectWafProfileConstraintMethodArgs
ObjectWafProfileConstraintParamLength, ObjectWafProfileConstraintParamLengthArgs
- Action string
- Action. Valid values:
allow
,block
. - Length double
- Maximum length of parameter in URL, HTTP POST request or HTTP body in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Length float64
- Maximum length of parameter in URL, HTTP POST request or HTTP body in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Double
- Maximum length of parameter in URL, HTTP POST request or HTTP body in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - length number
- Maximum length of parameter in URL, HTTP POST request or HTTP body in bytes (0 to 2147483647).
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action str
- Action. Valid values:
allow
,block
. - length float
- Maximum length of parameter in URL, HTTP POST request or HTTP body in bytes (0 to 2147483647).
- log str
- Enable/disable logging. Valid values:
disable
,enable
. - severity str
- Severity. Valid values:
low
,medium
,high
. - status str
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Number
- Maximum length of parameter in URL, HTTP POST request or HTTP body in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintUrlParamLength, ObjectWafProfileConstraintUrlParamLengthArgs
- Action string
- Action. Valid values:
allow
,block
. - Length double
- Maximum length of URL parameter in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- Action string
- Action. Valid values:
allow
,block
. - Length float64
- Maximum length of URL parameter in bytes (0 to 2147483647).
- Log string
- Enable/disable logging. Valid values:
disable
,enable
. - Severity string
- Severity. Valid values:
low
,medium
,high
. - Status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Double
- Maximum length of URL parameter in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action string
- Action. Valid values:
allow
,block
. - length number
- Maximum length of URL parameter in bytes (0 to 2147483647).
- log string
- Enable/disable logging. Valid values:
disable
,enable
. - severity string
- Severity. Valid values:
low
,medium
,high
. - status string
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action str
- Action. Valid values:
allow
,block
. - length float
- Maximum length of URL parameter in bytes (0 to 2147483647).
- log str
- Enable/disable logging. Valid values:
disable
,enable
. - severity str
- Severity. Valid values:
low
,medium
,high
. - status str
- Enable/disable the constraint. Valid values:
disable
,enable
.
- action String
- Action. Valid values:
allow
,block
. - length Number
- Maximum length of URL parameter in bytes (0 to 2147483647).
- log String
- Enable/disable logging. Valid values:
disable
,enable
. - severity String
- Severity. Valid values:
low
,medium
,high
. - status String
- Enable/disable the constraint. Valid values:
disable
,enable
.
ObjectWafProfileConstraintVersion, ObjectWafProfileConstraintVersionArgs
Import
ObjectWaf ProfileConstraint can be imported using any of these accepted formats:
Set import_options = [“profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWafProfileConstraint:ObjectWafProfileConstraint labelname ObjectWafProfileConstraint
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.