vapi metadata cli namespace: info

The info structure contains information about a namespace. It includes the identity of the namespace, a description, information children namespaces.

Representations:

{
    "children"[
        {
            "name""string",
            "path""string"
        },
        {
            "name""string",
            "path""string"
        }
    ],
    "description""string",
    "identity"{
        "name""string",
        "path""string"
    }
}
<?xml version="1.0" ?>
<ns0:Info xmlns:ns0="http://vmware.com/vapi/metadata/cli/namespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <identity>
    <name>string</name>
    <path>string</path>
  </identity>
  <description>string</description>
  <children-array>
    <array-item>
      <name>string</name>
      <path>string</path>
    </array-item>
    <array-item>
      <name>string</name>
      <path>string</path>
    </array-item>
  </children-array>
</ns0:Info>

Attributes:

Name Type Description
Required
identity identity Basic namespace identity.

description string The text description displayed to the user in help output.

children identity[] The children of this namespace in the tree of CLI namespaces.