From 0736336a71db9baf3e768e4560a619ae6a875fa4 Mon Sep 17 00:00:00 2001 From: Michael Gugino Date: Thu, 12 May 2016 16:15:19 -0400 Subject: Implement network agents functionality python-neutronclient implements the following command set: agent-list, agent-show, agent-delete These commands display and modify various network agents and their information. python-openstacksdk has supported the api calls for these commands, but python-openstackclient does not implement these commands. This commit adds support for the following commands: openstack network agent list openstack network agent show openstack network agent delete Change-Id: I83ede6f89c37e7bdc38d7e9e7bb9d80e94c8becc Implements: blueprint implement-network-agents Depends-On: I9755637f76787d5fac8ff295ae273b308fcb98d0 Co-Authored-By: Huanxuan Ao --- doc/source/command-objects/network-agent.rst | 53 ++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 doc/source/command-objects/network-agent.rst (limited to 'doc/source/command-objects') diff --git a/doc/source/command-objects/network-agent.rst b/doc/source/command-objects/network-agent.rst new file mode 100644 index 00000000..32cb371c --- /dev/null +++ b/doc/source/command-objects/network-agent.rst @@ -0,0 +1,53 @@ +============= +network agent +============= + +A **network agent** is an agent that handles various tasks used to +implement virtual networks. These agents include neutron-dhcp-agent, +neutron-l3-agent, neutron-metering-agent, and neutron-lbaas-agent, +among others. The agent is available when the alive status of the +agent is "True". + +Network v2 + +network agent delete +-------------------- + +Delete network agent(s) + +.. program:: network agent delete +.. code:: bash + + os network agent delete + [ ...] + +.. _network_agent_delete-network-agent: +.. describe:: + + Network agent(s) to delete (ID only) + +network agent list +------------------ + +List network agents + +.. program:: network agent list +.. code:: bash + + os network agent list + +network agent show +------------------ + +Display network agent details + +.. program:: network agent show +.. code:: bash + + os network agent show + + +.. _network_agent_show-network-agent: +.. describe:: + + Network agent to display (ID only) -- cgit v1.2.1