community.network.pn_vflow_table_profile – CLI command to modify vflow-table-profile

Note

This plugin is part of the community.network collection (version 3.0.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install community.network.

To use it in a playbook, specify: community.network.pn_vflow_table_profile.

Synopsis

  • This module can be used to modify a vFlow table profile.

Parameters

Parameter

Comments

pn_cliswitch

string

Target switch to run the CLI on.

pn_enable

boolean

enable or disable vflow profile table.

Choices:

  • no

  • yes

pn_hw_tbl

string

hardware table used by vFlow.

Choices:

  • switch-main

  • switch-hash

  • npu-main

  • npu-hash

pn_profile

string

type of vFlow profile.

Choices:

  • application

  • ipv6

  • qos

state

string / required

State the action to perform. Use update to modify the vflow-table-profile.

Choices:

  • update

Examples

- name: Modify vflow table profile
  community.network.pn_vflow_table_profile:
    pn_cliswitch: 'sw01'
    state: 'update'
    pn_profile: 'ipv6'
    pn_hw_tbl: 'switch-main'
    pn_enable: true

- name: Modify vflow table profile
  community.network.pn_vflow_table_profile:
    state: 'update'
    pn_profile: 'qos'
    pn_hw_tbl: 'switch-main'
    pn_enable: false

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key

Description

changed

boolean

indicates whether the CLI caused changes on the target.

Returned: always

command

string

the CLI command run on the target node.

Returned: always

stderr

list / elements=string

set of error responses from the vflow-table-profile command.

Returned: on error

stdout

list / elements=string

set of responses from the vflow-table-profile command.

Returned: always

Authors

  • Pluribus Networks (@rajaspachipulusu17)