Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchPipelineReadDataProvider.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 = ("master_timeout",);
52
54 constructor(*hash<auto> options);
55
56
58 constructor(RestClient::RestClient rest) ;
59
60
62 string getName();
63
64
66 *string getDesc();
67
68
70
75protected:
76 auto doRequestImpl(auto req, *hash<auto> request_options);
77public:
78
79
81
83protected:
84 *DataProvider::AbstractDataProviderType getRequestTypeImpl();
85public:
86
87
89
91protected:
92 *DataProvider::AbstractDataProviderType getResponseTypeImpl();
93public:
94
95
97 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
98
99};
100
102class ElasticSearchPipelineReadRequestDataType : public DataProvider::HashDataType {
103
104public:
105protected:
107 const Fields = ...;
108
109
110public:
111
114
115};
116
118class ElasticSearchPipelineReadResponseDataType : public DataProvider::HashDataType {
119
120public:
123
124};
125};
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
The ElasticSearch pipeline read API data provider.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:33
const ResponseType
Response type.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:48
const QueryArgs
Query args.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:51
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:41
*string getDesc()
Returns the data provider description.
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
const ProviderInfo
Provider info.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:37
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const RequestType
Request type.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:45
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
ElasticSearch pipeline read API request.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:102
const Fields
Field descriptions.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:107
ElasticSearch pipeline read API response.
Definition ElasticSearchPipelineReadDataProvider.qc.dox.h:118
Qore ElasticSearchDataProvider module definition.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:26
const ElasticSearchAcknowledgedDataType
A constant for the acknowledged response type.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:44