Qore AwsRestClientDataProvider Module Reference  1.0
AwsRestClientGetDataProvider.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace AwsRestClientDataProvider {
28 class AwsRestClientGetDataProvider : public AbstractDataProvider {
29 
30 public:
32  AwsRestClient rest;
33 
35  const ProviderInfo = <DataProviderInfo>{
36  "name": "get",
37  "desc": "AWS REST GET data provider; makes a `GET` request to a REST server and returns the response",
38  "type": "AwsRestClientGetDataProvider",
39  "constructor_options": AwsRestClientDataProvider::ConstructorOptions,
40  "supports_request": True,
41  };
42 
44  const ProviderSummaryInfo = cast<hash<DataProviderSummaryInfo>>(ProviderInfo{
45  AbstractDataProvider::DataProviderSummaryInfoKeys
46  });
47 
49  const RequestType = new RestClientCallWithoutBodyRequestDataType();
50 
52  const ResponseType = new RestClientCallResponseDataType();
53 
55  constructor(*hash<auto> options);
56 
57 
59  constructor(AwsRestClient rest);
60 
61 
63  string getName();
64 
65 
67 
72 protected:
73  auto doRequestImpl(auto req, *hash<auto> request_options);
74 public:
75 
76 
79 
81 protected:
82  *AbstractDataProviderType getRequestTypeImpl();
83 public:
84 
85 
87 
89 protected:
90  *AbstractDataProviderType getResponseTypeImpl();
91 public:
92 
93 
95  hash<DataProviderInfo> getStaticInfoImpl();
96 
97 };
98 };
const ConstructorOptions
Constructor arguments.
Definition: AwsRestClientDataProvider.qc.dox.h:42
The AWS REST client GET data provider class.
Definition: AwsRestClientGetDataProvider.qc.dox.h:28
AwsRestClient rest
REST client connection.
Definition: AwsRestClientGetDataProvider.qc.dox.h:32
const ProviderInfo
Provider info.
Definition: AwsRestClientGetDataProvider.qc.dox.h:35
const ProviderSummaryInfo
Provider summary info.
Definition: AwsRestClientGetDataProvider.qc.dox.h:44
constructor(AwsRestClient rest)
Creates the object from a REST connection.
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const ResponseType
Response type.
Definition: AwsRestClientGetDataProvider.qc.dox.h:52
string getName()
Returns the data provider name.
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
const RequestType
Request type.
Definition: AwsRestClientGetDataProvider.qc.dox.h:49
const True
Qore AwsRestClientDataProvider module definition.
Definition: AwsRestClientCallDataProvider.qc.dox.h:26