com.vmware.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 Required Description
identity
 *
identity Yes Basic namespace identity.
description
 *
string Yes The text description displayed to the user in help output.
children
 *
List<identity> Yes The children of this namespace in the tree of CLI namespaces.

Copyright © 2014. All Rights Reserved.