Skip to content

Latest commit

 

History

History
415 lines (395 loc) · 17 KB

File metadata and controls

415 lines (395 loc) · 17 KB

vmware.alb.avi_wafapplicationsignatureprovider

Module for setup of WafApplicationSignatureProvider Avi RESTful Object

Parameter Choices/Defaults Comments
state
str
  • absent
  • present ←
- The state that should be applied on the entity.
avi_api_update_method
str
  • put ←
  • patch
- Default method for object update is HTTP PUT.
- Setting to patch will override that behavior to use HTTP PATCH.
avi_api_patch_op
str
  • add ←
  • replace
  • delete
  • remove
- Patch operation to use when using avi_api_update_method as patch.
avi_patch_path
str
- Patch path to use when using avi_api_update_method as patch.
avi_patch_value
str
- Patch value to use when using avi_api_update_method as patch.
available_applications
list
- Available application names and the ruleset version, when the rules for an application changed the last time.
- Field introduced in 20.1.1.
- Allowed in enterprise edition with any value, essentials edition with any value, basic edition with any value, enterprise with cloud services
- edition.
configpb_attributes
dict
- Protobuf versioning for config pbs.
- Field introduced in 21.1.1.
- Allowed in enterprise edition with any value, essentials edition with any value, basic edition with any value, enterprise with cloud services
- edition.
filter_rules_on_import
bool
- If this is set to false, all provided rules are imported when updating this object.
- If this is set to true, only newer rules are considered for import.
- Newer rules are rules where the rule id is not in the range of 2,000,000 to 2,080,000 or where the rule has a tag with a cve from 2013 or newer.
- All other rules are ignored on rule import.
- Field introduced in 30.2.1.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
- Default value when not specified in API or module is interpreted by Avi Controller as True.
name
str
- Name of application specific ruleset provider.
- Field introduced in 20.1.1.
- Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
ruleset_version
str
- Version of signatures.
- Field introduced in 20.1.1.
- Allowed in enterprise edition with any value, essentials edition with any value, basic edition with any value, enterprise with cloud services
- edition.
service_status
dict
- If this object is managed by the application signatures update service, this field contain the status of this syncronization.
- Field introduced in 20.1.3.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
signatures
list
- The waf rules.
- Not visible in the api.
- Field introduced in 20.1.1.
- Allowed in enterprise edition with any value, essentials edition with any value, basic edition with any value, enterprise with cloud services
- edition.
tenant_ref
str
- It is a reference to an object of type tenant.
- Field introduced in 20.1.1.
- Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
url
str
- Avi controller URL of the object.
uuid
str
- Field introduced in 20.1.1.
- Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.

- hosts: localhost
  connection: local
  collections:
    - vmware.alb
  vars:
    avi_credentials:
      username: "avi_user"
      password: "avi_password"
      controller: "192.168.138.18"
      api_version: "21.1.1"
  tasks:
    - name: Example to create WafApplicationSignatureProvider object
      avi_wafapplicationsignatureprovider:
        avi_credentials: "{{ avi_credentials }}"
        state: present
        name: sample_wafapplicationsignatureprovider

Authors