rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMapIdItemsConst Param

    getCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMapIdItems: EndpointGeneric<
        {
            filter?: string;
            maxPageSize?: number;
            orderBy?: string;
            pageToken?: string;
            sorted_map_id: string;
            universe_id: string;
        },
        {
            memoryStoreSortedMapItems: {
                etag: string;
                expireTime: string;
                id: string;
                numericSortKey: number;
                path: string;
                stringSortKey: string;
                ttl: string;
                value: unknown;
            }[];
            nextPageToken: string;
        },
        undefined,
    > = ...

    STABLE

    Gets and returns items in the map with a given order and filter.

    Scopes: memory-store.sorted-map:read Engine: Not available in-engine

    universe_id The universe ID. sorted_map_id The sorted-map ID. maxPageSize The maximum number of memory store sorted map items to return. The service might return fewer than this value. If unspecified, at most 1 memory store sorted map items are returned. The maximum value is 100 and higher values are set to 100. pageToken A page token, received from a previous call, to retrieve a subsequent page.

    When paginating, all other parameters provided to the subsequent call must match the call that provided the page token. orderBy If specified, results are ordered according to the specified fields.

    Values must be a comma-separated list of fields, with an optional, per-field " desc" suffix to sort by descending rather than ascending values. You can access subfields with a . operator.

    Results may be ordered by the following fields: id.

    Example: "id desc"

    filter This field may be set in order to filter the resources returned.

    Filtering conforms to Common Expression Language (CEL). Only the id and sortKey fields are supported. In terms of operators, only <, > and && are allowed'

    Example: id > "key-001" && id < "key-100"