Class: Google::Cloud::DiscoveryEngine::V1::ListSessionsRequest
- Inherits:
-
Object
- Object
- Google::Cloud::DiscoveryEngine::V1::ListSessionsRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/discoveryengine/v1/conversational_search_service.rb
Overview
Request for ListSessions method.
Instance Attribute Summary collapse
-
#filter ⇒ ::String
A comma-separated list of fields to filter by, in EBNF grammar.
-
#order_by ⇒ ::String
A comma-separated list of fields to order by, sorted in ascending order.
-
#page_size ⇒ ::Integer
Maximum number of results to return.
-
#page_token ⇒ ::String
A page token, received from a previous
ListSessions
call. -
#parent ⇒ ::String
Required.
Instance Attribute Details
#filter ⇒ ::String
Returns A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are:
user_pseudo_id
state
display_name
starred
is_pinned
labels
create_time
update_time
Examples: "user_pseudo_id = some_id" "display_name = \"some_name\"" "starred = true" "is_pinned=true AND (NOT labels:hidden)" "create_time > \"1970-01-01T12:00:00Z\"".
963 964 965 966 |
# File 'proto_docs/google/cloud/discoveryengine/v1/conversational_search_service.rb', line 963 class ListSessionsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#order_by ⇒ ::String
Returns A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields:
update_time
create_time
session_name
is_pinned
Example:
- "update_time desc"
- "create_time"
- "is_pinned desc,update_time desc": list sessions by is_pinned first, then by update_time.
963 964 965 966 |
# File 'proto_docs/google/cloud/discoveryengine/v1/conversational_search_service.rb', line 963 class ListSessionsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#page_size ⇒ ::Integer
Returns Maximum number of results to return. If unspecified, defaults to 50. Max allowed value is 1000.
963 964 965 966 |
# File 'proto_docs/google/cloud/discoveryengine/v1/conversational_search_service.rb', line 963 class ListSessionsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#page_token ⇒ ::String
Returns A page token, received from a previous ListSessions
call.
Provide this to retrieve the subsequent page.
963 964 965 966 |
# File 'proto_docs/google/cloud/discoveryengine/v1/conversational_search_service.rb', line 963 class ListSessionsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parent ⇒ ::String
Returns Required. The data store resource name. Format:
projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}
.
963 964 965 966 |
# File 'proto_docs/google/cloud/discoveryengine/v1/conversational_search_service.rb', line 963 class ListSessionsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |