cis data legacy resource model: resource item

Contains the data returned for a single resource, which corresponds to a single item in the result set. Represents a projection onto the public state of the resource model data of the given resource.

Representations:

{
    "property_values"[
        {
            "property""string",
            "value""opaque_string_value"
        },
        {
            "property""string",
            "value""opaque_string_value"
        }
    ],
    "resource_id"{
        "id""obj-103",
        "type""string"
    }
}
<?xml version="1.0" ?>
<ns0:ResourceItem xmlns:ns0="http://vmware.com/cis/data/legacy/resource_model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <resource_id>
    <id>obj-103</id>
    <type>string</type>
  </resource_id>
  <property_values-array>
    <array-item>
      <value>opaque_string_value</value>
      <property>string</property>
    </array-item>
    <array-item>
      <value>opaque_string_value</value>
      <property>string</property>
    </array-item>
  </property_values-array>
</ns0:ResourceItem>

Attributes:

Name Type Description
Required
resource_id typed_ID The identifier of the resource that this instance contains data for.

property_values property_value[] The retrieved values of the individual resource model properties.