avi.Wafprofile
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Wafprofile” sidebar_current: “docs-avi-resource-wafprofile” description: |- Creates and manages Avi WafProfile.
avi.Wafprofile
The WafProfile resource allows the creation and management of Avi WafProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Wafprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Wafprofile("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewWafprofile(ctx, "foo", &avi.WafprofileArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Wafprofile("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Wafprofile;
import com.pulumi.avi.WafprofileArgs;
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 foo = new Wafprofile("foo", WafprofileArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Wafprofile
properties:
tenantRef: /api/tenant/?name=admin
Create Wafprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Wafprofile(name: string, args: WafprofileArgs, opts?: CustomResourceOptions);
@overload
def Wafprofile(resource_name: str,
args: WafprofileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Wafprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
configs: Optional[Sequence[WafprofileConfigArgs]] = None,
configpb_attributes: Optional[Sequence[WafprofileConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
files: Optional[Sequence[WafprofileFileArgs]] = None,
markers: Optional[Sequence[WafprofileMarkerArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None,
wafprofile_id: Optional[str] = None)
func NewWafprofile(ctx *Context, name string, args WafprofileArgs, opts ...ResourceOption) (*Wafprofile, error)
public Wafprofile(string name, WafprofileArgs args, CustomResourceOptions? opts = null)
public Wafprofile(String name, WafprofileArgs args)
public Wafprofile(String name, WafprofileArgs args, CustomResourceOptions options)
type: avi:Wafprofile
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 WafprofileArgs
- 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 WafprofileArgs
- 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 WafprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WafprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WafprofileArgs
- 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 wafprofileResource = new Avi.Wafprofile("wafprofileResource", new()
{
Configs = new[]
{
new Avi.Inputs.WafprofileConfigArgs
{
AllowedHttpVersions = new[]
{
"string",
},
AllowedMethods = new[]
{
"string",
},
AllowedRequestContentTypeCharsets = new[]
{
"string",
},
ArgumentSeparator = "string",
ClientRequestMaxBodySize = "string",
ContentTypeMappings = new[]
{
new Avi.Inputs.WafprofileConfigContentTypeMappingArgs
{
ContentType = "string",
RequestBodyParser = "string",
MatchOp = "string",
},
},
CookieFormatVersion = "string",
IgnoreIncompleteRequestBodyError = "string",
MaxExecutionTime = "string",
RegexMatchLimit = "string",
RegexRecursionLimit = "string",
RequestBodyDefaultAction = "string",
RequestHdrDefaultAction = "string",
ResponseBodyDefaultAction = "string",
ResponseHdrDefaultAction = "string",
RestrictedExtensions = new[]
{
"string",
},
RestrictedHeaders = new[]
{
"string",
},
SendStatusHeader = "string",
ServerResponseMaxBodySize = "string",
StaticExtensions = new[]
{
"string",
},
StatusCodeForRejectedRequests = "string",
StatusHeaderName = "string",
XmlXxeProtection = "string",
},
},
ConfigpbAttributes = new[]
{
new Avi.Inputs.WafprofileConfigpbAttributeArgs
{
Version = "string",
},
},
Description = "string",
Files = new[]
{
new Avi.Inputs.WafprofileFileArgs
{
Data = "string",
Name = "string",
Type = "string",
},
},
Markers = new[]
{
new Avi.Inputs.WafprofileMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
TenantRef = "string",
Uuid = "string",
WafprofileId = "string",
});
example, err := avi.NewWafprofile(ctx, "wafprofileResource", &avi.WafprofileArgs{
Configs: avi.WafprofileConfigArray{
&avi.WafprofileConfigArgs{
AllowedHttpVersions: pulumi.StringArray{
pulumi.String("string"),
},
AllowedMethods: pulumi.StringArray{
pulumi.String("string"),
},
AllowedRequestContentTypeCharsets: pulumi.StringArray{
pulumi.String("string"),
},
ArgumentSeparator: pulumi.String("string"),
ClientRequestMaxBodySize: pulumi.String("string"),
ContentTypeMappings: avi.WafprofileConfigContentTypeMappingArray{
&avi.WafprofileConfigContentTypeMappingArgs{
ContentType: pulumi.String("string"),
RequestBodyParser: pulumi.String("string"),
MatchOp: pulumi.String("string"),
},
},
CookieFormatVersion: pulumi.String("string"),
IgnoreIncompleteRequestBodyError: pulumi.String("string"),
MaxExecutionTime: pulumi.String("string"),
RegexMatchLimit: pulumi.String("string"),
RegexRecursionLimit: pulumi.String("string"),
RequestBodyDefaultAction: pulumi.String("string"),
RequestHdrDefaultAction: pulumi.String("string"),
ResponseBodyDefaultAction: pulumi.String("string"),
ResponseHdrDefaultAction: pulumi.String("string"),
RestrictedExtensions: pulumi.StringArray{
pulumi.String("string"),
},
RestrictedHeaders: pulumi.StringArray{
pulumi.String("string"),
},
SendStatusHeader: pulumi.String("string"),
ServerResponseMaxBodySize: pulumi.String("string"),
StaticExtensions: pulumi.StringArray{
pulumi.String("string"),
},
StatusCodeForRejectedRequests: pulumi.String("string"),
StatusHeaderName: pulumi.String("string"),
XmlXxeProtection: pulumi.String("string"),
},
},
ConfigpbAttributes: avi.WafprofileConfigpbAttributeArray{
&avi.WafprofileConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Files: avi.WafprofileFileArray{
&avi.WafprofileFileArgs{
Data: pulumi.String("string"),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Markers: avi.WafprofileMarkerArray{
&avi.WafprofileMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
WafprofileId: pulumi.String("string"),
})
var wafprofileResource = new Wafprofile("wafprofileResource", WafprofileArgs.builder()
.configs(WafprofileConfigArgs.builder()
.allowedHttpVersions("string")
.allowedMethods("string")
.allowedRequestContentTypeCharsets("string")
.argumentSeparator("string")
.clientRequestMaxBodySize("string")
.contentTypeMappings(WafprofileConfigContentTypeMappingArgs.builder()
.contentType("string")
.requestBodyParser("string")
.matchOp("string")
.build())
.cookieFormatVersion("string")
.ignoreIncompleteRequestBodyError("string")
.maxExecutionTime("string")
.regexMatchLimit("string")
.regexRecursionLimit("string")
.requestBodyDefaultAction("string")
.requestHdrDefaultAction("string")
.responseBodyDefaultAction("string")
.responseHdrDefaultAction("string")
.restrictedExtensions("string")
.restrictedHeaders("string")
.sendStatusHeader("string")
.serverResponseMaxBodySize("string")
.staticExtensions("string")
.statusCodeForRejectedRequests("string")
.statusHeaderName("string")
.xmlXxeProtection("string")
.build())
.configpbAttributes(WafprofileConfigpbAttributeArgs.builder()
.version("string")
.build())
.description("string")
.files(WafprofileFileArgs.builder()
.data("string")
.name("string")
.type("string")
.build())
.markers(WafprofileMarkerArgs.builder()
.key("string")
.values("string")
.build())
.name("string")
.tenantRef("string")
.uuid("string")
.wafprofileId("string")
.build());
wafprofile_resource = avi.Wafprofile("wafprofileResource",
configs=[{
"allowed_http_versions": ["string"],
"allowed_methods": ["string"],
"allowed_request_content_type_charsets": ["string"],
"argument_separator": "string",
"client_request_max_body_size": "string",
"content_type_mappings": [{
"content_type": "string",
"request_body_parser": "string",
"match_op": "string",
}],
"cookie_format_version": "string",
"ignore_incomplete_request_body_error": "string",
"max_execution_time": "string",
"regex_match_limit": "string",
"regex_recursion_limit": "string",
"request_body_default_action": "string",
"request_hdr_default_action": "string",
"response_body_default_action": "string",
"response_hdr_default_action": "string",
"restricted_extensions": ["string"],
"restricted_headers": ["string"],
"send_status_header": "string",
"server_response_max_body_size": "string",
"static_extensions": ["string"],
"status_code_for_rejected_requests": "string",
"status_header_name": "string",
"xml_xxe_protection": "string",
}],
configpb_attributes=[{
"version": "string",
}],
description="string",
files=[{
"data": "string",
"name": "string",
"type": "string",
}],
markers=[{
"key": "string",
"values": ["string"],
}],
name="string",
tenant_ref="string",
uuid="string",
wafprofile_id="string")
const wafprofileResource = new avi.Wafprofile("wafprofileResource", {
configs: [{
allowedHttpVersions: ["string"],
allowedMethods: ["string"],
allowedRequestContentTypeCharsets: ["string"],
argumentSeparator: "string",
clientRequestMaxBodySize: "string",
contentTypeMappings: [{
contentType: "string",
requestBodyParser: "string",
matchOp: "string",
}],
cookieFormatVersion: "string",
ignoreIncompleteRequestBodyError: "string",
maxExecutionTime: "string",
regexMatchLimit: "string",
regexRecursionLimit: "string",
requestBodyDefaultAction: "string",
requestHdrDefaultAction: "string",
responseBodyDefaultAction: "string",
responseHdrDefaultAction: "string",
restrictedExtensions: ["string"],
restrictedHeaders: ["string"],
sendStatusHeader: "string",
serverResponseMaxBodySize: "string",
staticExtensions: ["string"],
statusCodeForRejectedRequests: "string",
statusHeaderName: "string",
xmlXxeProtection: "string",
}],
configpbAttributes: [{
version: "string",
}],
description: "string",
files: [{
data: "string",
name: "string",
type: "string",
}],
markers: [{
key: "string",
values: ["string"],
}],
name: "string",
tenantRef: "string",
uuid: "string",
wafprofileId: "string",
});
type: avi:Wafprofile
properties:
configpbAttributes:
- version: string
configs:
- allowedHttpVersions:
- string
allowedMethods:
- string
allowedRequestContentTypeCharsets:
- string
argumentSeparator: string
clientRequestMaxBodySize: string
contentTypeMappings:
- contentType: string
matchOp: string
requestBodyParser: string
cookieFormatVersion: string
ignoreIncompleteRequestBodyError: string
maxExecutionTime: string
regexMatchLimit: string
regexRecursionLimit: string
requestBodyDefaultAction: string
requestHdrDefaultAction: string
responseBodyDefaultAction: string
responseHdrDefaultAction: string
restrictedExtensions:
- string
restrictedHeaders:
- string
sendStatusHeader: string
serverResponseMaxBodySize: string
staticExtensions:
- string
statusCodeForRejectedRequests: string
statusHeaderName: string
xmlXxeProtection: string
description: string
files:
- data: string
name: string
type: string
markers:
- key: string
values:
- string
name: string
tenantRef: string
uuid: string
wafprofileId: string
Wafprofile 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 Wafprofile resource accepts the following input properties:
- Configs
List<Wafprofile
Config> - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<WafprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Files
List<Wafprofile
File> - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Wafprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Wafprofile
Id string
- Configs
[]Wafprofile
Config Args - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []WafprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Files
[]Wafprofile
File Args - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Wafprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Wafprofile
Id string
- configs
List<Wafprofile
Config> - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<WafprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files
List<Wafprofile
File> - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Wafprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile
Id String
- configs
Wafprofile
Config[] - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes WafprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files
Wafprofile
File[] - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Wafprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile
Id string
- configs
Sequence[Wafprofile
Config Args] - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[WafprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files
Sequence[Wafprofile
File Args] - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Wafprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile_
id str
- configs List<Property Map>
- Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files List<Property Map>
- List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile
Id String
Outputs
All input properties are implicitly available as output properties. Additionally, the Wafprofile 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 Wafprofile Resource
Get an existing Wafprofile 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?: WafprofileState, opts?: CustomResourceOptions): Wafprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[WafprofileConfigpbAttributeArgs]] = None,
configs: Optional[Sequence[WafprofileConfigArgs]] = None,
description: Optional[str] = None,
files: Optional[Sequence[WafprofileFileArgs]] = None,
markers: Optional[Sequence[WafprofileMarkerArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None,
wafprofile_id: Optional[str] = None) -> Wafprofile
func GetWafprofile(ctx *Context, name string, id IDInput, state *WafprofileState, opts ...ResourceOption) (*Wafprofile, error)
public static Wafprofile Get(string name, Input<string> id, WafprofileState? state, CustomResourceOptions? opts = null)
public static Wafprofile get(String name, Output<String> id, WafprofileState state, CustomResourceOptions options)
resources: _: type: avi:Wafprofile 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.
- Configpb
Attributes List<WafprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configs
List<Wafprofile
Config> - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Files
List<Wafprofile
File> - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Wafprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Wafprofile
Id string
- Configpb
Attributes []WafprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configs
[]Wafprofile
Config Args - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Files
[]Wafprofile
File Args - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Wafprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Wafprofile
Id string
- configpb
Attributes List<WafprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configs
List<Wafprofile
Config> - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files
List<Wafprofile
File> - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Wafprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile
Id String
- configpb
Attributes WafprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configs
Wafprofile
Config[] - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files
Wafprofile
File[] - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Wafprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile
Id string
- configpb_
attributes Sequence[WafprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configs
Sequence[Wafprofile
Config Args] - Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files
Sequence[Wafprofile
File Args] - List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Wafprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile_
id str
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configs List<Property Map>
- Config params for waf. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- files List<Property Map>
- List of data files used for waf rules. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- wafprofile
Id String
Supporting Types
WafprofileConfig, WafprofileConfigArgs
- Allowed
Http List<string>Versions - Allowed
Methods List<string> - Allowed
Request List<string>Content Type Charsets - Argument
Separator string - Client
Request stringMax Body Size - Content
Type List<WafprofileMappings Config Content Type Mapping> - string
- Ignore
Incomplete stringRequest Body Error - Max
Execution stringTime - Regex
Match stringLimit - Regex
Recursion stringLimit - Request
Body stringDefault Action - Request
Hdr stringDefault Action - Response
Body stringDefault Action - Response
Hdr stringDefault Action - Restricted
Extensions List<string> - Restricted
Headers List<string> - Send
Status stringHeader - Server
Response stringMax Body Size - Static
Extensions List<string> - Status
Code stringFor Rejected Requests - Status
Header stringName - Xml
Xxe stringProtection
- Allowed
Http []stringVersions - Allowed
Methods []string - Allowed
Request []stringContent Type Charsets - Argument
Separator string - Client
Request stringMax Body Size - Content
Type []WafprofileMappings Config Content Type Mapping - string
- Ignore
Incomplete stringRequest Body Error - Max
Execution stringTime - Regex
Match stringLimit - Regex
Recursion stringLimit - Request
Body stringDefault Action - Request
Hdr stringDefault Action - Response
Body stringDefault Action - Response
Hdr stringDefault Action - Restricted
Extensions []string - Restricted
Headers []string - Send
Status stringHeader - Server
Response stringMax Body Size - Static
Extensions []string - Status
Code stringFor Rejected Requests - Status
Header stringName - Xml
Xxe stringProtection
- allowed
Http List<String>Versions - allowed
Methods List<String> - allowed
Request List<String>Content Type Charsets - argument
Separator String - client
Request StringMax Body Size - content
Type List<WafprofileMappings Config Content Type Mapping> - String
- ignore
Incomplete StringRequest Body Error - max
Execution StringTime - regex
Match StringLimit - regex
Recursion StringLimit - request
Body StringDefault Action - request
Hdr StringDefault Action - response
Body StringDefault Action - response
Hdr StringDefault Action - restricted
Extensions List<String> - restricted
Headers List<String> - send
Status StringHeader - server
Response StringMax Body Size - static
Extensions List<String> - status
Code StringFor Rejected Requests - status
Header StringName - xml
Xxe StringProtection
- allowed
Http string[]Versions - allowed
Methods string[] - allowed
Request string[]Content Type Charsets - argument
Separator string - client
Request stringMax Body Size - content
Type WafprofileMappings Config Content Type Mapping[] - string
- ignore
Incomplete stringRequest Body Error - max
Execution stringTime - regex
Match stringLimit - regex
Recursion stringLimit - request
Body stringDefault Action - request
Hdr stringDefault Action - response
Body stringDefault Action - response
Hdr stringDefault Action - restricted
Extensions string[] - restricted
Headers string[] - send
Status stringHeader - server
Response stringMax Body Size - static
Extensions string[] - status
Code stringFor Rejected Requests - status
Header stringName - xml
Xxe stringProtection
- allowed_
http_ Sequence[str]versions - allowed_
methods Sequence[str] - allowed_
request_ Sequence[str]content_ type_ charsets - argument_
separator str - client_
request_ strmax_ body_ size - content_
type_ Sequence[Wafprofilemappings Config Content Type Mapping] - str
- ignore_
incomplete_ strrequest_ body_ error - max_
execution_ strtime - regex_
match_ strlimit - regex_
recursion_ strlimit - request_
body_ strdefault_ action - request_
hdr_ strdefault_ action - response_
body_ strdefault_ action - response_
hdr_ strdefault_ action - restricted_
extensions Sequence[str] - restricted_
headers Sequence[str] - send_
status_ strheader - server_
response_ strmax_ body_ size - static_
extensions Sequence[str] - status_
code_ strfor_ rejected_ requests - status_
header_ strname - xml_
xxe_ strprotection
- allowed
Http List<String>Versions - allowed
Methods List<String> - allowed
Request List<String>Content Type Charsets - argument
Separator String - client
Request StringMax Body Size - content
Type List<Property Map>Mappings - String
- ignore
Incomplete StringRequest Body Error - max
Execution StringTime - regex
Match StringLimit - regex
Recursion StringLimit - request
Body StringDefault Action - request
Hdr StringDefault Action - response
Body StringDefault Action - response
Hdr StringDefault Action - restricted
Extensions List<String> - restricted
Headers List<String> - send
Status StringHeader - server
Response StringMax Body Size - static
Extensions List<String> - status
Code StringFor Rejected Requests - status
Header StringName - xml
Xxe StringProtection
WafprofileConfigContentTypeMapping, WafprofileConfigContentTypeMappingArgs
- Content
Type string - Request
Body stringParser - Match
Op string
- Content
Type string - Request
Body stringParser - Match
Op string
- content
Type String - request
Body StringParser - match
Op String
- content
Type string - request
Body stringParser - match
Op string
- content_
type str - request_
body_ strparser - match_
op str
- content
Type String - request
Body StringParser - match
Op String
WafprofileConfigpbAttribute, WafprofileConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
WafprofileFile, WafprofileFileArgs
WafprofileMarker, WafprofileMarkerArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.