This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Full documentation of Orion SDK verbs?

Hello,

In the latest version of the SolarWinds Technical Reference for the Orion Software Development Kit there is a section called "Some Useful Verbs".  However, by both it's own name and by how I have seen others used here on Thwack I know that this is not the full list of verbs.

Is there any documentation, official or otherwise, of a full list of what verbs are available and for what operations within the Orion SDK?  The Tech Ref document is lacking such a list, and even the "Some Useful Verbs" section lacks some verbs that are used elsewhere in the same document.

  • Hello,

    the Verbs are module specific and depending on the installed product you have accessible verbs.

    The full list of verbs usable for your product combination you'll get by querying (against SWIS v3)

    SELECT Name, EntityName FROM Metadata.Verb

    The verb arguments including their definitions, types etc. then by:

    SELECT EntityName, VerbName, Position, Name, Type, XmlTemplate, XmlSchemas, IsOptional

    FROM Metadata.VerbArgument

    Purpose of the verbs should be in most cases self-descriptive per their name.

    I hope it helped at least a bit.

    H.

  • This is immensely helpful, thank you!

    The verb arguments formatting is a little obscure at first, but I just need to compare that output versus one of the ones documented in the Tech Ref guide and then I'm sure it'll click.

    Thanks again.