> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# showResourceObjects

<div className="kinetica-javadoc">
  <ul className="member-list">
    <li>
      <div className="section detail" id="showResourceObjects(com.gpudb.protocol.ShowResourceObjectsRequest)">
        <h3>showResourceObjects</h3>
        <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsResponse" title="class in com.gpudb.protocol">ShowResourceObjectsResponse</a></span> <span className="element-name">showResourceObjects</span><wbr /><span className="parameters">(<a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest" title="class in com.gpudb.protocol">ShowResourceObjectsRequest</a> request)</span> throws <span className="exceptions"><a href="/content/api/java/com/gpudb/GPUdbException" title="class in com.gpudb">GPUdbException</a></span></div>
        <div className="block">Returns information about the internal sub-components (tiered objects) which use resources of the system. The request can either return results from actively used objects (default) or it can be used to query the status of the objects of a given list of tables. Returns detailed information about the requested resource objects.</div>

        <div className="dl notes">
          <div className="dt">Parameters:</div>
          <div className="dd"><code>request</code> - <a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest" title="class in com.gpudb.protocol"><code>Request</code></a> object containing the parameters for the operation.</div>
          <div className="dt">Returns:</div>
          <div className="dd"><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsResponse" title="class in com.gpudb.protocol"><code>Response</code></a> object containing the results of the operation.</div>
          <div className="dt">Throws:</div>
          <div className="dd"><code><a href="/content/api/java/com/gpudb/GPUdbException" title="class in com.gpudb">GPUdbException</a></code> - if an error occurs during the operation.</div>
        </div>
      </div>
    </li>

    <li>
      <div className="section detail" id="showResourceObjects(java.util.Map)">
        <h3>showResourceObjects</h3>
        <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsResponse" title="class in com.gpudb.protocol">ShowResourceObjectsResponse</a></span> <span className="element-name">showResourceObjects</span><wbr /><span className="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a>,<wbr /><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a>> options)</span> throws <span className="exceptions"><a href="/content/api/java/com/gpudb/GPUdbException" title="class in com.gpudb">GPUdbException</a></span></div>
        <div className="block">Returns information about the internal sub-components (tiered objects) which use resources of the system. The request can either return results from actively used objects (default) or it can be used to query the status of the objects of a given list of tables. Returns detailed information about the requested resource objects.</div>

        <div className="dl notes">
          <div className="dt">Parameters:</div>

          <div className="dd">
            <code>options</code> - Optional parameters.

            <ul>
              <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#TIERS"><code>TIERS</code></a>: Comma-separated list of tiers to query, leave blank for all tiers. </li>
              <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#EXPRESSION"><code>EXPRESSION</code></a>: An expression to filter the returned objects. Expression is limited to the following operators: =,!=,\<,\<=,>,>=,+,-,\*,AND,OR,LIKE. For details see <a href="/content/concepts/expressions/" target="_top">Expressions</a>. To use a more complex expression, query the ki\_catalog.ki\_tiered\_objects table directly. </li>

              <li>
                <a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#ORDER_BY"><code>ORDER\_BY</code></a>: Single column to be sorted by as well as the sort direction, e.g., 'size asc'. Supported values:

                <ul>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#SIZE"><code>SIZE</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#ID"><code>ID</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#PRIORITY"><code>PRIORITY</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#TIER"><code>TIER</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#EVICTABLE"><code>EVICTABLE</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#LOCKED"><code>LOCKED</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#PIN_COUNT"><code>PIN\_COUNT</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#RAM_EVICTIONS"><code>RAM\_EVICTIONS</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#PERSIST_EVICTIONS"><code>PERSIST\_EVICTIONS</code></a> </li>
                  <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#OWNER_RESOURCE_GROUP"><code>OWNER\_RESOURCE\_GROUP</code></a> </li>
                </ul>
              </li>

              <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#LIMIT"><code>LIMIT</code></a>: An integer indicating the maximum number of results to be returned, per rank, or (-1) to indicate that the maximum number of results allowed by the server should be returned. The number of records returned will never exceed the server's own limit, defined by the <a href="/content/config/#config-main-general" target="_top">max\_get\_records\_size</a> parameter in the server configuration. The default value is '100'. </li>
              <li><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsRequest.Options#TABLE_NAMES"><code>TABLE\_NAMES</code></a>: Comma-separated list of tables to restrict the results to. Use '\*' to show all tables. </li>
            </ul>

            The default value is an empty <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link"><code>Map</code></a>.
          </div>

          <div className="dt">Returns:</div>
          <div className="dd"><a href="/content/api/java/com/gpudb/protocol/ShowResourceObjectsResponse" title="class in com.gpudb.protocol"><code>Response</code></a> object containing the results of the operation.</div>
          <div className="dt">Throws:</div>
          <div className="dd"><code><a href="/content/api/java/com/gpudb/GPUdbException" title="class in com.gpudb">GPUdbException</a></code> - if an error occurs during the operation.</div>
        </div>
      </div>
    </li>
  </ul>
</div>
