|
28 | 28 |
|
29 | 29 |
|
30 | 30 | class CreateAgent(command.ShowOne): |
31 | | - _description = _("Create compute agent") |
| 31 | + """Create compute agent. |
| 32 | +
|
| 33 | + The compute agent functionality is hypervisor specific and is only |
| 34 | + supported by the XenAPI hypervisor driver. It was removed from nova in the |
| 35 | + 23.0.0 (Wallaby) release. |
| 36 | + """ |
32 | 37 |
|
33 | 38 | def get_parser(self, prog_name): |
34 | 39 | parser = super(CreateAgent, self).get_parser(prog_name) |
@@ -80,7 +85,12 @@ def take_action(self, parsed_args): |
80 | 85 |
|
81 | 86 |
|
82 | 87 | class DeleteAgent(command.Command): |
83 | | - _description = _("Delete compute agent(s)") |
| 88 | + """Delete compute agent(s). |
| 89 | +
|
| 90 | + The compute agent functionality is hypervisor specific and is only |
| 91 | + supported by the XenAPI hypervisor driver. It was removed from nova in the |
| 92 | + 23.0.0 (Wallaby) release. |
| 93 | + """ |
84 | 94 |
|
85 | 95 | def get_parser(self, prog_name): |
86 | 96 | parser = super(DeleteAgent, self).get_parser(prog_name) |
@@ -111,7 +121,12 @@ def take_action(self, parsed_args): |
111 | 121 |
|
112 | 122 |
|
113 | 123 | class ListAgent(command.Lister): |
114 | | - _description = _("List compute agents") |
| 124 | + """List compute agents. |
| 125 | +
|
| 126 | + The compute agent functionality is hypervisor specific and is only |
| 127 | + supported by the XenAPI hypervisor driver. It was removed from nova in the |
| 128 | + 23.0.0 (Wallaby) release. |
| 129 | + """ |
115 | 130 |
|
116 | 131 | def get_parser(self, prog_name): |
117 | 132 | parser = super(ListAgent, self).get_parser(prog_name) |
@@ -141,7 +156,12 @@ def take_action(self, parsed_args): |
141 | 156 |
|
142 | 157 |
|
143 | 158 | class SetAgent(command.Command): |
144 | | - _description = _("Set compute agent properties") |
| 159 | + """Set compute agent properties. |
| 160 | +
|
| 161 | + The compute agent functionality is hypervisor specific and is only |
| 162 | + supported by the XenAPI hypervisor driver. It was removed from nova in the |
| 163 | + 23.0.0 (Wallaby) release. |
| 164 | + """ |
145 | 165 |
|
146 | 166 | def get_parser(self, prog_name): |
147 | 167 | parser = super(SetAgent, self).get_parser(prog_name) |
|
0 commit comments