Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchDocumentCreateDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28
33
34public:
36 const ProviderInfo = ...;
37
38
41
42
45
48
50 const QueryArgs = ...;
51
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 ElasticSearchDocumentCreateRequestDataType : public DataProvider::HashDataType {
103
104public:
105protected:
107 const Fields = ...;
108
109
110public:
111
114
115};
116
118class ElasticSearchDocumentCreateShardsDataType : public DataProvider::HashDataType {
119
120public:
121protected:
123 const Fields = ...;
124
125
126public:
127
130
131};
132
134class ElasticSearchDocumentCreateResponseDataType : public DataProvider::HashDataType {
135
136public:
137protected:
139 const Fields = ...;
140
141
142public:
143
146
147};
148
151};
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
The ElasticSearch document create API data provider.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:32
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
*string getDesc()
Returns the data provider description.
const ResponseType
Response type.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:47
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
const RequestType
Request type.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:44
const QueryArgs
Query args.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:50
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
const ProviderInfo
Provider info.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:36
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
constructor(*hash< auto > options)
Creates the object from constructor options.
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:40
Create document request data type.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:102
const Fields
Field descriptions.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:107
Document create API response.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:134
const Fields
Field descriptions.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:139
Shard data type.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:118
const Fields
Field descriptions.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:123
Qore ElasticSearchDataProvider module definition.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:26
const ElasticSearchDocumentCreateResponseDataType
Document create API response type constant.
Definition ElasticSearchDocumentCreateDataProvider.qc.dox.h:150