$darkmode
Qore AwsRestClientDataProvider Module Reference 1.0
AwsRestClientDeleteDataProvider.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace AwsRestClientDataProvider {
29 
30 public:
32  const ProviderInfo = <DataProviderInfo>{
33  "name": "delete",
34  "desc": "AWS REST DELETE data provider; makes a `DELETE` request to a REST server and returns the "
35  "response",
36  "type": "AwsRestClientDeleteDataProvider",
37  "constructor_options": AwsRestClientDataProvider::ConstructorOptions,
38  "supports_request": True,
39  };
40 
42  const ProviderSummaryInfo = cast<hash<DataProviderSummaryInfo>>(ProviderInfo{
43  AbstractDataProvider::DataProviderSummaryInfoKeys
44  });
45 
47  const RequestType = new RestClientCallRequestDataType();
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 
70 protected:
71  auto doRequestImpl(auto req, *hash<auto> request_options);
72 public:
73 
74 
76 
78 protected:
79  *AbstractDataProviderType getRequestTypeImpl();
80 public:
81 
82 
84 
86 protected:
87  *AbstractDataProviderType getResponseTypeImpl();
88 public:
89 
90 
92  hash<DataProviderInfo> getStaticInfoImpl();
93 
94 };
95 };
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 DELETE data provider class.
Definition: AwsRestClientDeleteDataProvider.qc.dox.h:28
const ResponseType
Response type.
Definition: AwsRestClientDeleteDataProvider.qc.dox.h:50
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
string getName()
Returns the data provider name.
const ProviderSummaryInfo
Provider summary info.
Definition: AwsRestClientDeleteDataProvider.qc.dox.h:42
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
*AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
constructor(AwsRestClient rest)
Creates the object from a REST connection.
const RequestType
Request type.
Definition: AwsRestClientDeleteDataProvider.qc.dox.h:47
const ProviderInfo
Provider info.
Definition: AwsRestClientDeleteDataProvider.qc.dox.h:32
const True
Qore AwsRestClientDataProvider module definition.
Definition: AwsRestClientCallDataProvider.qc.dox.h:26