Skip to content

Latest commit

 

History

History
282 lines (262 loc) · 10.2 KB

avi_botmapping.rst

File metadata and controls

282 lines (262 loc) · 10.2 KB

vmware.alb.avi_botmapping

Module for setup of BotMapping 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.
mapping_rules
list
- Rules for bot classification.
- Field introduced in 21.1.1.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
name
str
required: true
- The name of this mapping.
- Field introduced in 21.1.1.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
tenant_ref
str
- The unique identifier of the tenant to which this mapping belongs.
- It is a reference to an object of type tenant.
- Field introduced in 21.1.1.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
url
str
- Avi controller URL of the object.
uuid
str
- A unique identifier for this mapping.
- Field introduced in 21.1.1.
- Allowed in enterprise edition with any value, 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 BotMapping object
      avi_botmapping:
        avi_credentials: "{{ avi_credentials }}"
        state: present
        name: sample_botmapping

Authors