Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CrestApi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
crest-db
CrestApi
Merge requests
!62
Release 6.2 cr1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Release 6.2 cr1
release-6.2-CR1
into
master
Overview
0
Commits
37
Pipelines
2
Changes
35
Merged
Andrea Formica
requested to merge
release-6.2-CR1
into
master
1 month ago
Overview
0
Commits
37
Pipelines
2
Changes
35
Expand
Added authentication in client.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
cfd3013a
37 commits,
1 month ago
35 files
+
1787
−
259
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
35
Search (e.g. *.vue) (Ctrl+P)
CrestApi/CrestApi.h
+
26
−
1
Options
@@ -34,6 +34,7 @@
#include
<CrestApi/PayloadDto.h>
#include
<CrestApi/PayloadSetDto.h>
#include
<CrestApi/PayloadTagInfoSetDto.h>
#include
<CrestApi/RunLumiSetDto.h>
#include
<CrestApi/StoreSetDto.h>
#include
<CrestApi/TagMetaSetDto.h>
#include
<CrestApi/TagSetDto.h>
@@ -531,6 +532,13 @@ class CrestApi : public CrestApiBase {
*/
PayloadDto
getPayloadMeta
(
const
std
::
string
&
hash
)
override
;
/**
* This method finds a streamer info for the hash.
* @param hash - hash.
* @return streamer info.
*/
std
::
string
getStreamerInfo
(
const
std
::
string
&
hash
)
override
;
/**
* This method returns the full CREST Server version.
* @return CREST server version.
@@ -547,7 +555,24 @@ class CrestApi : public CrestApiBase {
* @return JSON payload tag info list as a PayloadTagInfoSetDto.<br>
*/
PayloadTagInfoSetDto
listPayloadTagInfo
(
const
std
::
string
&
tagname
,
int
size
,
int
page
,
const
std
::
string
&
sort
);
int
page
,
const
std
::
string
&
sort
)
override
;
/**
* This method retrieves run lumi information.
* @param since - since time (the beginning of the time interval),
* @param until - until time (end of the time interval),
* @param format - time format for since/until ([iso, number, run-lumi]),
* @param mode - the mode parameter is used to determine the meaning of
* since/until [daterange, runrange].
* @param size - page size,
* @param page - page number,
* @param sort - sorting order (runNumber:ASC or runNumber:DESC),
* @return JSON run lumi info list as a RunLumiSetDto.<br>
*/
RunLumiSetDto
listRunInfo
(
const
std
::
string
&
since
,
const
std
::
string
&
until
,
const
std
::
string
format
,
const
std
::
string
mode
,
int
size
,
int
page
,
const
std
::
string
&
sort
);
};
}
// namespace Crest
Loading