Skip to content

Latest commit

 

History

History
104 lines (84 loc) · 3.2 KB

avi_update_se_data_vnics.rst

File metadata and controls

104 lines (84 loc) · 3.2 KB

vmware.alb.avi_update_se_data_vnics

Module for setup of UpdateSeDataVnics Avi RESTful Object

Parameter Choices/Defaults Comments
data_vnics_config
list
- Placeholder for description of property data_vnics of obj type ServiceEngine field. Here you can specify configuration for data_vnics property of a service engine. For more details you can refer to swagger specs https://{controller_ip}/swagger/ From above link you can find configurable fields under data_vnics property of a service engine.
se_name
str
required: true
- Name of the Service Engine for which data vnics to be updated

- 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 UpdateSeDataVnics object
      avi_update_se_data_vnics:
        avi_credentials: "{{ avi_credentials }}"
        state: present
        name: sample_update_se_data_vnics

Authors