@@ -225,13 +225,14 @@ func cockpitGrafanaSyncDataSources() *core.Command {
225225
226226func cockpitGrafanaUserCreate () * core.Command {
227227 return & core.Command {
228- Short : `Create a Grafana user` ,
229- Long : `Create a Grafana user to connect to your Cockpit's Grafana. Upon creation, your user password displays only once, so make sure that you save it.
228+ Short : `(Deprecated) EOL 2026-01-20` ,
229+ Long : `Create a Grafana user
230+ Create a Grafana user to connect to your Cockpit's Grafana. Upon creation, your user password displays only once, so make sure that you save it.
230231Each Grafana user is associated with a role: viewer or editor. A viewer can only view dashboards, whereas an editor can create and edit dashboards. Note that the ` + "`" + `admin` + "`" + ` username is not available for creation.` ,
231232 Namespace : "cockpit" ,
232233 Resource : "grafana-user" ,
233234 Verb : "create" ,
234- // Deprecated: false ,
235+ // Deprecated: true ,
235236 ArgsType : reflect .TypeOf (cockpit.GlobalAPICreateGrafanaUserRequest {}),
236237 ArgSpecs : core.ArgSpecs {
237238 core .ProjectIDArgSpec (),
@@ -268,12 +269,13 @@ Each Grafana user is associated with a role: viewer or editor. A viewer can only
268269
269270func cockpitGrafanaUserList () * core.Command {
270271 return & core.Command {
271- Short : `List Grafana users` ,
272- Long : `List all Grafana users created in your Cockpit's Grafana. By default, the Grafana users returned in the list are ordered in ascending order.` ,
272+ Short : `(Deprecated) EOL 2026-01-20` ,
273+ Long : `List Grafana users
274+ List all Grafana users created in your Cockpit's Grafana. By default, the Grafana users returned in the list are ordered in ascending order.` ,
273275 Namespace : "cockpit" ,
274276 Resource : "grafana-user" ,
275277 Verb : "list" ,
276- // Deprecated: false ,
278+ // Deprecated: true ,
277279 ArgsType : reflect .TypeOf (cockpit.GlobalAPIListGrafanaUsersRequest {}),
278280 ArgSpecs : core.ArgSpecs {
279281 {
@@ -307,12 +309,13 @@ func cockpitGrafanaUserList() *core.Command {
307309
308310func cockpitGrafanaUserDelete () * core.Command {
309311 return & core.Command {
310- Short : `Delete a Grafana user` ,
311- Long : `Delete a Grafana user from your Cockpit's Grafana, specified by the ID of the Project the Cockpit belongs to, and the ID of the Grafana user.` ,
312+ Short : `(Deprecated) EOL 2026-01-20` ,
313+ Long : `Delete a Grafana user
314+ Delete a Grafana user from your Cockpit's Grafana, specified by the ID of the Project the Cockpit belongs to, and the ID of the Grafana user.` ,
312315 Namespace : "cockpit" ,
313316 Resource : "grafana-user" ,
314317 Verb : "delete" ,
315- // Deprecated: false ,
318+ // Deprecated: true ,
316319 ArgsType : reflect .TypeOf (cockpit.GlobalAPIDeleteGrafanaUserRequest {}),
317320 ArgSpecs : core.ArgSpecs {
318321 core .ProjectIDArgSpec (),
@@ -344,13 +347,14 @@ func cockpitGrafanaUserDelete() *core.Command {
344347
345348func cockpitGrafanaUserResetPassword () * core.Command {
346349 return & core.Command {
347- Short : `Reset a Grafana user password` ,
348- Long : `Reset the password of a Grafana user, specified by the ID of the Project the Cockpit belongs to, and the ID of the Grafana user.
350+ Short : `(Deprecated) EOL 2026-01-20` ,
351+ Long : `Reset a Grafana user password
352+ Reset the password of a Grafana user, specified by the ID of the Project the Cockpit belongs to, and the ID of the Grafana user.
349353A new password regenerates and only displays once. Make sure that you save it.` ,
350354 Namespace : "cockpit" ,
351355 Resource : "grafana-user" ,
352356 Verb : "reset-password" ,
353- // Deprecated: false ,
357+ // Deprecated: true ,
354358 ArgsType : reflect .TypeOf (cockpit.GlobalAPIResetGrafanaUserPasswordRequest {}),
355359 ArgSpecs : core.ArgSpecs {
356360 core .ProjectIDArgSpec (),
@@ -442,7 +446,7 @@ func cockpitPlanList() *core.Command {
442446 return & core.Command {
443447 Short : `List plan types` ,
444448 Long : `Retrieve a list of available pricing plan types.
445- Deprecated: retention is now managed at the data source level.` ,
449+ Deprecated due to retention now being managed at the data source level.` ,
446450 Namespace : "cockpit" ,
447451 Resource : "plan" ,
448452 Verb : "list" ,
@@ -480,7 +484,7 @@ func cockpitPlanSelect() *core.Command {
480484 return & core.Command {
481485 Short : `Apply a pricing plan` ,
482486 Long : `Apply a pricing plan on a given Project. You must specify the ID of the pricing plan type. Note that you will be billed for the plan you apply.
483- Deprecated: retention is now managed at the data source level.` ,
487+ Deprecated due to retention now being managed at the data source level.` ,
484488 Namespace : "cockpit" ,
485489 Resource : "plan" ,
486490 Verb : "select" ,
@@ -517,7 +521,7 @@ func cockpitPlanGet() *core.Command {
517521 return & core.Command {
518522 Short : `Get current plan` ,
519523 Long : `Retrieve a pricing plan for the given Project, specified by the ID of the Project.
520- Deprecated: retention is now managed at the data source level.` ,
524+ Deprecated due to retention now being managed at the data source level.` ,
521525 Namespace : "cockpit" ,
522526 Resource : "plan" ,
523527 Verb : "get" ,
0 commit comments