Skip to content

Commit 55b40f3

Browse files
Merge pull request #515 from netscaler/idem2
Corrected Data Type Issues in OpenAPI Spec to Resolve Idempotency Errors
2 parents 6f107b6 + fd12c90 commit 55b40f3

571 files changed

Lines changed: 4046 additions & 3480 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

examples/botprofile.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
- name: Sample botprofile playbook
3+
hosts: demo_netscalers
4+
gather_facts: false
5+
tasks:
6+
- name: Configure botprofile
7+
delegate_to: localhost
8+
netscaler.adc.botprofile:
9+
state: present
10+
name: Bot_management_prof
11+
signature: new_bot_signatures.json
12+
bot_enable_white_list: 'ON'
13+
bot_enable_black_list: 'ON'
14+
bot_enable_rate_limit: 'ON'
15+
devicefingerprint: 'ON'
16+
devicefingerprintaction:
17+
- LOG
18+
- DROP
19+
bot_enable_ip_reputation: 'ON'
20+
verboseloglevel: HTTP_FULL_HEADER
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
- name: Sample botprofile_blacklist_binding playbook
3+
hosts: demo_netscalers
4+
gather_facts: false
5+
tasks:
6+
- name: Configure botprofile_blacklist_binding
7+
delegate_to: localhost
8+
netscaler.adc.botprofile_blacklist_binding:
9+
state: present
10+
name: Bot_management_prof
11+
bot_blacklist: true
12+
bot_blacklist_type: EXPRESSION
13+
bot_blacklist_value: HTTP.REQ.URL.CONTAINS("block.html")
14+
bot_blacklist_action:
15+
- LOG
16+
- DROP
17+
bot_blacklist_enabled: 'ON'
18+
logmessage: Demo Block List
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
- name: Sample botprofile_ipreputation_binding playbook
3+
hosts: demo_netscalers
4+
gather_facts: false
5+
tasks:
6+
- name: Configure botprofile_ipreputation_binding
7+
delegate_to: localhost
8+
netscaler.adc.botprofile_ipreputation_binding:
9+
state: present
10+
name: Bot_management_prof
11+
bot_ipreputation: true
12+
category: IP
13+
bot_iprep_enabled: 'ON'
14+
bot_iprep_action:
15+
- LOG
16+
- DROP
17+
logmessage: IP Reputation
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
- name: Sample botprofile_ratelimit_binding playbook
3+
hosts: demo_netscalers
4+
gather_facts: false
5+
tasks:
6+
- name: Configure botprofile_ratelimit_binding
7+
delegate_to: localhost
8+
netscaler.adc.botprofile_ratelimit_binding:
9+
state: present
10+
name: Bot_management_prof
11+
bot_ratelimit: true
12+
bot_rate_limit_type: SOURCE_IP
13+
rate: '5'
14+
timeslice: '20000'
15+
bot_rate_limit_action:
16+
- LOG
17+
- DROP
18+
bot_rate_limit_enabled: 'ON'
19+
logmessage: Demo Rate Limit
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
- name: Sample botprofile_whitelist_binding playbook
3+
hosts: demo_netscalers
4+
gather_facts: false
5+
tasks:
6+
- name: Configure botprofile_whitelist_binding
7+
delegate_to: localhost
8+
netscaler.adc.botprofile_whitelist_binding:
9+
state: present
10+
name: Bot_management_prof
11+
bot_whitelist: true
12+
bot_whitelist_type: EXPRESSION
13+
bot_whitelist_value: HTTP.REQ.URL.CONTAINS("allow.html")
14+
log: 'ON'
15+
bot_whitelist_enabled: 'ON'
16+
logmessage: Demo White List

examples/urlfilteringparameter.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

meta/runtime.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -846,8 +846,6 @@ action_groups:
846846
- tunnelglobal_tunneltrafficpolicy_binding
847847
- tunneltrafficpolicy
848848
- ulfdserver
849-
- urlfilteringcategorization
850-
- urlfilteringparameter
851849
- userprotocol
852850
- uservserver
853851
- videooptimizationdetectionaction

0 commit comments

Comments
 (0)