Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchIndexReadAllDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28
31
32public:
34 const ProviderInfo = ...;
35
36
39
40
43
46
49
51 constructor(*hash<auto> options);
52
53
55 constructor(RestClient::RestClient rest) ;
56
57
59 string getName();
60
61
63 *string getDesc();
64
65
67
72protected:
73 auto doRequestImpl(auto req, *hash<auto> request_options);
74public:
75
76
78
80protected:
81 *DataProvider::AbstractDataProviderType getRequestTypeImpl();
82public:
83
84
86
88protected:
89 *DataProvider::AbstractDataProviderType getResponseTypeImpl();
90public:
91
92
94 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
95
96};
97
99class ElasticSearchIndexReadAllRequestDataType : public DataProvider::HashDataType {
100
101public:
102protected:
105
106public:
107
110
111};
112};
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
The ElasticSearch read all indices API data provider.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:30
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:38
const QueryArgs
Query args.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:48
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
constructor(*hash< auto > options)
Creates the object from constructor options.
const ProviderInfo
Provider info.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:34
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
const RequestType
Request type.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:42
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
*string getDesc()
Returns the data provider description.
const ResponseType
Response type.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:45
ElasticSearch index read-all API request.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:99
const Fields
Field descriptions.
Definition ElasticSearchIndexReadAllDataProvider.qc.dox.h:104
const QueryArgs
Query args.
Definition ElasticSearchIndexReadDataProvider.qc.dox.h:51
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