File tree Expand file tree Collapse file tree 1 file changed +1
-23
lines changed Expand file tree Collapse file tree 1 file changed +1
-23
lines changed Original file line number Diff line number Diff line change 116
116
id:
117
117
type: str
118
118
description:
119
- - ' Interface number, in C/U format, where C can take one of the following values:'
119
+ - Interface number, in C/U format, where C can take one of the following values:
120
120
- '* 0 - Indicates a management interface.'
121
121
- '* 1 - Indicates a 1 Gbps port.'
122
122
- '* 10 - Indicates a 10 Gbps port.'
308
308
- Accept and send 802.1q VLAN tagged packets, based on Allowed Vlan List of
309
309
this interface.
310
310
extends_documentation_fragment: netscaler.adc.netscaler_adc
311
-
312
311
"""
313
312
314
313
EXAMPLES = r"""
315
- - gather_facts: 'no'
316
- hosts: localhost
317
- name: ns.conf playbook
318
- tasks:
319
- - Configure interface
320
- - localhost
321
- - bandwidthhigh: '0'
322
- bandwidthnormal: '0'
323
- haheartbeat: 'OFF'
324
- hamonitor: 'OFF'
325
- ifnum:
326
- - LO/1
327
- interface_id: LO/1
328
- intftype: Loopback
329
- state: present
330
- throughput: '0'
331
314
"""
332
315
333
316
RETURN = r"""
360
343
returned: always
361
344
type: list
362
345
sample: ['message 1', 'message 2']
363
-
364
346
"""
365
347
366
-
367
348
import os
368
-
369
349
from ..module_utils .module_executor import ModuleExecutor
370
350
371
351
RESOURCE_NAME = os .path .basename (__file__ ).replace (".py" , "" )
372
352
373
-
374
353
def main ():
375
354
executor = ModuleExecutor (RESOURCE_NAME )
376
355
executor .main ()
377
356
378
-
379
357
if __name__ == "__main__" :
380
358
main ()
You can’t perform that action at this time.
0 commit comments