/** * Nudr_DataRepository API OpenAPI file * Unified Data Repository Service. © 2020, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved. * * The version of the OpenAPI document: 2.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /* * ProvisionedDataDocumentApi.h * * */ #ifndef ProvisionedDataDocumentApi_H_ #define ProvisionedDataDocumentApi_H_ #include <pistache/http.h> #include <pistache/router.h> #include <pistache/http_headers.h> #include <pistache/optional.h> #include "DataSetName.h" #include "ProvisionedDataSets.h" //#include "Set.h" #include <string> namespace org { namespace openapitools { namespace server { namespace api { using namespace org::openapitools::server::model; class ProvisionedDataDocumentApi { public: ProvisionedDataDocumentApi(std::shared_ptr<Pistache::Rest::Router>); virtual ~ProvisionedDataDocumentApi() {} void init(); const std::string base = "/nudr-dr/v2"; private: void setupRoutes(); void query_provisioned_data_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response); void provisioned_data_document_api_default_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response); std::shared_ptr<Pistache::Rest::Router> router; /// <summary> /// Retrieve multiple provisioned data sets of a UE /// </summary> /// <remarks> /// /// </remarks> /// <param name="ueId">UE id</param> /// <param name="servingPlmnId">PLMN ID</param> /// <param name="datasetNames">List of dataset names (optional, default to std::vector<DataSetName>())</param> // virtual void query_provisioned_data(const std::string &ueId, const std::string &servingPlmnId, const Pistache::Optional<Set<DataSetName>> &datasetNames, Pistache::Http::ResponseWriter &response) = 0; }; } } } } #endif /* ProvisionedDataDocumentApi_H_ */