> ## 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.

# show_resource_objects

<div className="kinetica-pydoc">
  <div className="dl py method">
    <div className="dt sig sig-object py" id="gpudb.GPUdb.show_resource_objects"> <span className="sig-name descname"><span className="pre">show\_resource\_objects</span></span><span className="sig-paren">(</span><span className="em sig-param"><span className="n"><span className="pre">options</span></span><span className="o"><span className="pre">=</span></span><span className="default_value"><span className="pre">{"{"}{"}"}</span></span></span><span className="sig-paren">)</span><a href="https://github.com/kineticadb/kinetica-api-python/blob/master/gpudb/gpudb.py#L39077"><span className="viewcode-link"><span className="pre">\[source]</span></span></a></div>

    <div className="dd">
      <p>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.</p>
      <p><strong>Parameters</strong></p>

      <div className="blockquote">
        <div>
          <div className="dl">
            <div className="dt">options (<span className="em">dict of str to str</span>) –</div>

            <div className="dd">
              <p>Optional parameters. Allowed keys are:</p>

              <ul className="simple">
                <li>
                  <p><strong>tiers</strong> – Comma-separated list of tiers to query, leave blank for all tiers.</p>
                </li>

                <li>
                  <p><strong>expression</strong> – An expression to filter the returned objects. Expression is limited to the following operators: =,!=,\<,\<=,>,>=,+,-,\*,AND,OR,LIKE. For details see <a className="reference external" href="/content/concepts/expressions/">Expressions</a>. To use a more complex expression, query the ki\_catalog.ki\_tiered\_objects table directly.</p>
                </li>

                <li>
                  <p><strong>order\_by</strong> – Single column to be sorted by as well as the sort direction, e.g., ‘size asc’. Allowed values are:</p>

                  <ul>
                    <li>
                      <p>size</p>
                    </li>

                    <li>
                      <p>id</p>
                    </li>

                    <li>
                      <p>priority</p>
                    </li>

                    <li>
                      <p>tier</p>
                    </li>

                    <li>
                      <p>evictable</p>
                    </li>

                    <li>
                      <p>locked</p>
                    </li>

                    <li>
                      <p>pin\_count</p>
                    </li>

                    <li>
                      <p>ram\_evictions</p>
                    </li>

                    <li>
                      <p>persist\_evictions</p>
                    </li>

                    <li>
                      <p>owner\_resource\_group</p>
                    </li>
                  </ul>
                </li>

                <li>
                  <p><strong>limit</strong> – 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 className="reference external" href="/content/config/#config-main-general">max\_get\_records\_size</a> parameter in the server configuration. The default value is ‘100’.</p>
                </li>

                <li>
                  <p><strong>table\_names</strong> – Comma-separated list of tables to restrict the results to. Use ‘\*’ to show all tables.</p>
                </li>
              </ul>

              <p>The default value is an empty dict ( {"{"}{"}"} ).</p>
            </div>
          </div>
        </div>
      </div>

      <p><strong>Returns</strong></p>

      <div className="blockquote">
        <div>
          <p>A dict with the following entries–</p>

          <div className="dl simple">
            <div className="dt">rank\_objects (<span className="em">dict of str to str</span>) –</div>

            <div className="dd">
              <p>Tier usage across ranks. Layout is: response.rank\_usage\[rank\_number]\[resource\_group\_name] = group\_usage (as stringified JSON).</p>
            </div>

            <div className="dt">info (<span className="em">dict of str to str</span>) –</div>

            <div className="dd">
              <p>Additional information.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
