Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In order to update or replace existing client notes, use vss-cli compute vm set <uuid> client-note --action up <new-note> to append or use the flag --replace to overwrite all notes.

Code Block
languagebash
linenumbersfalse
vss-cli compute vm set Frontend1 client-note --action up \
"Billing Code: 1234"

And query to validate any change:

...

If you wanted just to replace existing contents, add the --replace/-r and --action [up|del] option to the command as follows:

Code Block
languagebash
linenumbersfalse
vss-cli compute vm set Frontend1 client-note --action up \
--replace "Billing Code: 1234"

...

Code Block
languagebash
linenumbersfalse
vss-cli compute vm get Front_end_1 client-note

Value               : Billing Code: 1234

Delete Client Notes

To delete a client note simply run:

Code Block
languagebash
linenumbersfalse
vss-cli compute vm set Frontend1 client-note --action del