Qore AwsRestClientDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
AwsRestClientOptionsDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = <DataProviderInfo>{
33 "name": "options",
34 "desc": "AWS REST OPTIONS data provider; makes an `OPTIONS` request to a REST server and returns the "
35 "response",
36 "type": "AwsRestClientOptionsDataProvider",
38 "supports_request": True,
39 };
40
42 const ProviderSummaryInfo = cast<hash<DataProviderSummaryInfo>>(ProviderInfo{
43 AbstractDataProvider::DataProviderSummaryInfoKeys
44 });
45
47 const RequestType = new RestClientCallWithoutBodyRequestDataType();
48
50 const ResponseType = new RestClientCallResponseDataType();
51
53 constructor(*hash<auto> options);
54
55
57 constructor(AwsRestClient rest) ;
58
59
61 string getName();
62
63
65
70protected:
71 auto doRequestImpl(auto req, *hash<auto> request_options);
72public:
73
74
77
79protected:
80 *AbstractDataProviderType getRequestTypeImpl();
81public:
82
83
85
87protected:
88 *AbstractDataProviderType getResponseTypeImpl();
89public:
90
91
93 hash<DataProviderInfo> getStaticInfoImpl();
94
95};
96};
The AWS REST client base data provider class.
Definition: AwsRestClientDataProviderBase.qc.dox.h:28
const ConstructorOptions
Constructor arguments.
Definition: AwsRestClientDataProvider.qc.dox.h:42
The AWS REST client OPTIONS data provider class.
Definition: AwsRestClientOptionsDataProvider.qc.dox.h:28
const RequestType
Request type.
Definition: AwsRestClientOptionsDataProvider.qc.dox.h:47
const ProviderSummaryInfo
Provider summary info.
Definition: AwsRestClientOptionsDataProvider.qc.dox.h:42
*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.
constructor(AwsRestClient rest)
Creates the object from a REST connection.
string getName()
Returns the data provider name.
const ProviderInfo
Provider info.
Definition: AwsRestClientOptionsDataProvider.qc.dox.h:32
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
const ResponseType
Response type.
Definition: AwsRestClientOptionsDataProvider.qc.dox.h:50
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
Qore AwsRestClientDataProvider module definition.
Definition: AwsRestClientCallDataProvider.qc.dox.h:26