Package com.gpudb.protocol
Class ShowResourceObjectsRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.ShowResourceObjectsRequest.Options
-
- Enclosing class:
- ShowResourceObjectsRequest
public static final class ShowResourceObjectsRequest.Options extends Object
A set of string constants for theShowResourceObjectsRequestparameteroptions.Optional parameters.
-
-
Field Summary
Fields Modifier and Type Field Description static StringEVICTABLEstatic StringEXPRESSIONAn expression to filter the returned objects.static StringIDstatic StringLIMITAn 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.static StringLOCKEDstatic StringORDER_BYSingle column to be sorted by as well as the sort direction, e.g., 'size asc'.static StringOWNER_RESOURCE_GROUPstatic StringPERSIST_EVICTIONSstatic StringPIN_COUNTstatic StringPRIORITYstatic StringRAM_EVICTIONSstatic StringSIZEstatic StringTABLE_NAMESComma-separated list of tables to restrict the results to.static StringTIERstatic StringTIERSComma-separated list of tiers to query, leave blank for all tiers.
-
-
-
Field Detail
-
TIERS
public static final String TIERS
Comma-separated list of tiers to query, leave blank for all tiers.- See Also:
- Constant Field Values
-
EXPRESSION
public static final String EXPRESSION
An expression to filter the returned objects. Expression is limited to the following operators: =,!=,<,<=,>,>=,+,-,*,AND,OR,LIKE. For details see Expressions. To use a more complex expression, query the ki_catalog.ki_tiered_objects table directly.- See Also:
- Constant Field Values
-
ORDER_BY
public static final String ORDER_BY
Single column to be sorted by as well as the sort direction, e.g., 'size asc'. Supported values:- See Also:
- Constant Field Values
-
SIZE
public static final String SIZE
- See Also:
- Constant Field Values
-
ID
public static final String ID
- See Also:
- Constant Field Values
-
PRIORITY
public static final String PRIORITY
- See Also:
- Constant Field Values
-
TIER
public static final String TIER
- See Also:
- Constant Field Values
-
EVICTABLE
public static final String EVICTABLE
- See Also:
- Constant Field Values
-
LOCKED
public static final String LOCKED
- See Also:
- Constant Field Values
-
PIN_COUNT
public static final String PIN_COUNT
- See Also:
- Constant Field Values
-
RAM_EVICTIONS
public static final String RAM_EVICTIONS
- See Also:
- Constant Field Values
-
PERSIST_EVICTIONS
public static final String PERSIST_EVICTIONS
- See Also:
- Constant Field Values
-
OWNER_RESOURCE_GROUP
public static final String OWNER_RESOURCE_GROUP
- See Also:
- Constant Field Values
-
LIMIT
public static final String LIMIT
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 max_get_records_size parameter in the server configuration. The default value is '100'.- See Also:
- Constant Field Values
-
TABLE_NAMES
public static final String TABLE_NAMES
Comma-separated list of tables to restrict the results to. Use '*' to show all tables.- See Also:
- Constant Field Values
-
-