Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchIndexReadDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28
34
35public:
37 const ProviderInfo = ...;
38
39
42
43
46
49
51 const QueryArgs = ...;
52
53
55 constructor(*hash<auto> options);
56
57
59 constructor(RestClient::RestClient rest) ;
60
61
63 string getName();
64
65
67 *string getDesc();
68
69
71
76protected:
77 auto doRequestImpl(auto req, *hash<auto> request_options);
78public:
79
80
82
84protected:
85 *DataProvider::AbstractDataProviderType getRequestTypeImpl();
86public:
87
88
90
92protected:
93 *DataProvider::AbstractDataProviderType getResponseTypeImpl();
94public:
95
96
98 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
99
100};
101
103class ElasticSearchIndexReadRequestDataType : public DataProvider::HashDataType {
104
105public:
107 const Fields = ...;
108
109
112
113};
114
116class ElasticSearchIndexReadResponseDataType : public HashDataType {
117
118public:
121
122};
123};
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
The ElasticSearch index read API data provider.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:33
*string getDesc()
Returns the data provider description.
constructor(*hash< auto > options)
Creates the object from constructor options.
const QueryArgs
Query args.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:51
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:41
const RequestType
Request type.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:45
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
string getName()
Returns the data provider name.
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
const ResponseType
Response type.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:48
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const ProviderInfo
Provider info.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:37
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
ElasticSearch index read API request.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:103
const Fields
Field descriptions.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:107
ElasticSearch index read API response.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:116
Qore ElasticSearchDataProvider module definition.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:26