Qore AwsRestClientDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
AwsRestClientPostDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
40 const RequestType = new RestClientCallRequestDataType();
41
43 const ResponseType = RestClientCallResponseDataType;
44
46 constructor(*hash<auto> options);
47
48
50 constructor(AwsRestClient rest) ;
51
52
54 string getName();
55
56
58
63protected:
64 auto doRequestImpl(auto req, *hash<auto> request_options);
65public:
66
67
69
71protected:
72 *AbstractDataProviderType getRequestTypeImpl();
73public:
74
75
77
79protected:
80 *AbstractDataProviderType getResponseTypeImpl();
81public:
82
83
85 hash<DataProviderInfo> getStaticInfoImpl();
86
87};
88};
The AWS REST client base data provider class.
Definition AwsRestClientDataProviderBase.qc.dox.h:28
The AWS REST client POST data provider class.
Definition AwsRestClientPostDataProvider.qc.dox.h:28
constructor(*hash< auto > options)
Creates the object from constructor options.
const ProviderSummaryInfo
Provider summary info.
Definition AwsRestClientPostDataProvider.qc.dox.h:36
const ResponseType
Response type.
Definition AwsRestClientPostDataProvider.qc.dox.h:43
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
const ProviderInfo
Provider info.
Definition AwsRestClientPostDataProvider.qc.dox.h:32
constructor(AwsRestClient rest)
Creates the object from a REST connection.
*AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const RequestType
Request type.
Definition AwsRestClientPostDataProvider.qc.dox.h:40
string getName()
Returns the data provider name.
Qore AwsRestClientDataProvider module definition.
Definition AwsRestClientCallDataProvider.qc.dox.h:26