Qore AwsRestClientDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
AwsRestClientDataProviderFactory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
3/* AwsRestClientDataProviderFactory.qc Copyright (C) 2023 Qore Technologies s.r.o.
4
5 Permission is hereby granted, free of charge, to any person obtaining a
6 copy of this software and associated documentation files (the "Software"),
7 to deal in the Software without restriction, including without limitation
8 the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 and/or sell copies of the Software, and to permit persons to whom the
10 Software is furnished to do so, subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 DEALINGS IN THE SOFTWARE.
22*/
23
28
29public:
30protected:
32 static Class cls = new Class("AwsRestClientDataProvider");
33
35 const FactoryInfo = <DataProviderFactoryInfo>{
36 "name": "awsrestclient",
37 "desc": "AWS REST client data provider factory",
38 "children_can_support_apis": True,
39 };
40
41public:
42
44
46protected:
47 hash<DataProviderFactoryInfo> getInfoImpl();
48public:
49
50
52
54protected:
55 hash<DataProviderInfo> getProviderInfoImpl();
56public:
57
58
60protected:
61 Class getClassImpl();
62public:
63
64};
65};
The awsrestclient data provider factory.
Definition: AwsRestClientDataProviderFactory.qc.dox.h:27
static Class cls
Data provider type info.
Definition: AwsRestClientDataProviderFactory.qc.dox.h:32
Class getClassImpl()
Returns the class for the data provider object.
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
const FactoryInfo
Factory info.
Definition: AwsRestClientDataProviderFactory.qc.dox.h:35
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
Qore AwsRestClientDataProvider module definition.
Definition: AwsRestClientCallDataProvider.qc.dox.h:26