mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
In anticipation of network agents, rename compute
Rename the compute agents in anticipation of network agents Change-Id: I201121915638d89dfbe46a7e0026aa4c2777e590 Closes-Bug: #1285800
This commit is contained in:
parent
b7f673cb81
commit
e9015b94f9
2 changed files with 8 additions and 8 deletions
|
|
@ -26,7 +26,7 @@ from openstackclient.common import utils
|
|||
|
||||
|
||||
class CreateAgent(show.ShowOne):
|
||||
"""Create agent command"""
|
||||
"""Create compute agent command"""
|
||||
|
||||
log = logging.getLogger(__name__ + ".CreateAgent")
|
||||
|
||||
|
|
@ -75,7 +75,7 @@ class CreateAgent(show.ShowOne):
|
|||
|
||||
|
||||
class DeleteAgent(command.Command):
|
||||
"""Delete agent command"""
|
||||
"""Delete compute agent command"""
|
||||
|
||||
log = logging.getLogger(__name__ + ".DeleteAgent")
|
||||
|
||||
|
|
@ -95,7 +95,7 @@ class DeleteAgent(command.Command):
|
|||
|
||||
|
||||
class ListAgent(lister.Lister):
|
||||
"""List agent command"""
|
||||
"""List compute agent command"""
|
||||
|
||||
log = logging.getLogger(__name__ + ".ListAgent")
|
||||
|
||||
|
|
@ -127,7 +127,7 @@ class ListAgent(lister.Lister):
|
|||
|
||||
|
||||
class SetAgent(show.ShowOne):
|
||||
"""Set agent command"""
|
||||
"""Set compute agent command"""
|
||||
|
||||
log = logging.getLogger(__name__ + ".SetAgent")
|
||||
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@ openstack.common =
|
|||
quota_show = openstackclient.common.quota:ShowQuota
|
||||
|
||||
openstack.compute.v2 =
|
||||
agent_create = openstackclient.compute.v2.agent:CreateAgent
|
||||
agent_delete = openstackclient.compute.v2.agent:DeleteAgent
|
||||
agent_list = openstackclient.compute.v2.agent:ListAgent
|
||||
agent_set = openstackclient.compute.v2.agent:SetAgent
|
||||
compute_agent_create = openstackclient.compute.v2.agent:CreateAgent
|
||||
compute_agent_delete = openstackclient.compute.v2.agent:DeleteAgent
|
||||
compute_agent_list = openstackclient.compute.v2.agent:ListAgent
|
||||
compute_agent_set = openstackclient.compute.v2.agent:SetAgent
|
||||
|
||||
aggregate_add_host = openstackclient.compute.v2.aggregate:AddAggregateHost
|
||||
aggregate_create = openstackclient.compute.v2.aggregate:CreateAggregate
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue