Qore ElasticSearchDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
ElasticSearchIndexCreateDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28
31
32public:
34 const ProviderInfo = ...;
35
36
39
40
43
46
48 const QueryArgs = ("wait_for_active_shards", "master_timeout", "timeout");
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 ElasticSearchIndexAliasesDataType : public DataProvider::HashDataType {
100
101public:
102 constructor() ;
103
104};
105
108
109public:
110protected:
112 const Fields = ...;
113
114
115public:
116
119
120};
121
124
125public:
126protected:
128 const Fields = ...;
129
130
131public:
132
135
136};
137};
The acknowledged response type.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:28
The ElasticSearch data provider base class.
Definition ElasticSearchDataProviderBase.qc.dox.h:28
Aliases data type.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:99
The ElasticSearch index create API data provider.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:30
const ProviderSummaryInfo
Provider summary info.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:38
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
const ResponseType
Response type.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:45
const RequestType
Request type.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:42
*DataProvider::AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
constructor(*hash< auto > options)
Creates the object from constructor options.
*DataProvider::AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const QueryArgs
Query args.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:48
*string getDesc()
Returns the data provider description.
const ProviderInfo
Provider info.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:34
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
Create index request data type.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:107
const Fields
Field descriptions.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:112
Index create API response.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:123
const Fields
Field descriptions.
Definition ElasticSearchIndexCreateDataProvider.qc.dox.h:128
Base data type for search request types.
Definition ElasticSearchIndexDataTypeBase.qc.dox.h:28
Qore ElasticSearchDataProvider module definition.
Definition ElasticSearchAcknowledgedDataType.qc.dox.h:26