Cppinecone
A C++ client for the Pinecone vector database
meta_operations.hpp
Go to the documentation of this file.
1 #pragma once
11 
12 namespace pinecone::domain
13 {
14 template <>
15 struct operation_args<operation_type::actions_whoami>
16  : public list_operation_args<operation_type::actions_whoami>,
17  public types::parser<types::api_metadata> {
18  using list_operation_args::list_operation_args;
19 };
20 } // namespace pinecone::domain
Metadata required by the Pinecone API.
Metaprogamming infrastructure for generation of per-operation code.
Operations made available by the Pinecone API.
operation_type
All operation types exposed by the Pinecone REST API.
Parses HTTP responses to domain types.
List operations are simple and construct themselves using only a URL.
Definition: operation.hpp:44
Operation-specific arguments.
Definition: operation.hpp:172
Parses raw data from the Pinecone API into native C++ types.
Definition: parser.hpp:27