Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6d54401df2 | ||
|
|
38e88e6678 | ||
|
|
eea054f3c4 | ||
|
|
619a7827de | ||
|
|
8c9353a007 | ||
|
|
191f3c859f |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -7,6 +7,7 @@ Testing/
|
||||
ft_build/
|
||||
ut_build/
|
||||
sdk_build/
|
||||
examples/build/
|
||||
test/httpserver/node_modules
|
||||
test/httpserver/package-lock.json
|
||||
test/httpserver/nohup.out
|
||||
|
||||
15
CHANGELOG
15
CHANGELOG
@@ -1,3 +1,18 @@
|
||||
2019-03-18 Version: 1.34.37
|
||||
1, Update Dependency
|
||||
|
||||
2019-03-18 Version: 1.34.36
|
||||
1, Update Dependency
|
||||
|
||||
2019-03-15 Version: 1.34.35
|
||||
1, Update Dependency
|
||||
|
||||
2019-03-15 Version: 1.34.34
|
||||
1, Update Dependency
|
||||
|
||||
2019-03-15 Version: 1.34.33
|
||||
1, Update Dependency
|
||||
|
||||
2019-03-15 Version: 1.34.32
|
||||
1, Update Dependency
|
||||
|
||||
|
||||
@@ -37,9 +37,10 @@ if(BUILD_UNIT_TESTS)
|
||||
endif()
|
||||
|
||||
if(BUILD_FUNCTION_TESTS)
|
||||
enable_testing()
|
||||
add_subdirectory(test/function_test/cdn)
|
||||
enable_testing()
|
||||
add_subdirectory(test/function_test/cdn)
|
||||
add_subdirectory(test/function_test/core)
|
||||
add_subdirectory(test/function_test/cs)
|
||||
add_subdirectory(test/function_test/ecs)
|
||||
add_subdirectory(test/function_test/nlp)
|
||||
add_subdirectory(test/function_test/rds)
|
||||
@@ -90,15 +91,19 @@ add_subdirectory(saf)
|
||||
add_subdirectory(arms)
|
||||
add_subdirectory(lubancloud)
|
||||
add_subdirectory(alimt)
|
||||
add_subdirectory(xspace)
|
||||
add_subdirectory(jarvis-public)
|
||||
add_subdirectory(cbn)
|
||||
add_subdirectory(emr)
|
||||
add_subdirectory(ram)
|
||||
add_subdirectory(sts)
|
||||
add_subdirectory(gpdb)
|
||||
add_subdirectory(sas-api)
|
||||
add_subdirectory(cr)
|
||||
add_subdirectory(finmall)
|
||||
add_subdirectory(openanalytics)
|
||||
add_subdirectory(snsuapi)
|
||||
add_subdirectory(ubsms)
|
||||
|
||||
|
||||
add_subdirectory(xspace)
|
||||
add_subdirectory(jarvis-public)
|
||||
add_subdirectory(cbn)
|
||||
add_subdirectory(emr)
|
||||
add_subdirectory(ram)
|
||||
add_subdirectory(sts)
|
||||
add_subdirectory(gpdb)
|
||||
add_subdirectory(sas-api)
|
||||
add_subdirectory(cr)
|
||||
add_subdirectory(finmall)
|
||||
add_subdirectory(openanalytics)
|
||||
add_subdirectory(yundun)
|
||||
67
README.md
67
README.md
@@ -157,6 +157,73 @@ Copy the above to ecs_test.cc, then build with the following command.
|
||||
~$
|
||||
```
|
||||
|
||||
## Timeout Configuration
|
||||
|
||||
CPP SDK uses libcurl to do HTTP transfer.
|
||||
|
||||
- The following timeout parameters are used to for libcurl.
|
||||
|
||||
- `connectTimeout`: timeout for the connect phase. [Refer](https://curl.haxx.se/libcurl/c/CURLOPT_CONNECTTIMEOUT_MS.html).
|
||||
- `readTimeout`: maximum time the request is allowed to take, [Refer](https://curl.haxx.se/libcurl/c/CURLOPT_TIMEOUT_MS.html)
|
||||
|
||||
- Default Value
|
||||
- `connectTimeout`: 5000ms
|
||||
- `readTimeout`: 10000ms
|
||||
|
||||
- You may specify `timeout` parameters when create a client or make a request.
|
||||
|
||||
- Request timeout has higher priority than client timeout.
|
||||
|
||||
- If you want to disable timeout feature, deliver `0` or `-1` to `setConnectTimeout` and `setReadTimeout`.
|
||||
|
||||
The following code shows hot to specify `timeout` parameters, and the final connectTimeout is 1000ms and readTimeout 6000ms.
|
||||
|
||||
```cpp
|
||||
#include <iostream>
|
||||
#include <alibabacloud/core/AlibabaCloud.h>
|
||||
#include <alibabacloud/ecs/EcsClient.h>
|
||||
|
||||
using namespace AlibabaCloud;
|
||||
using namespace AlibabaCloud::Ecs;
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
// Initialize the SDK
|
||||
AlibabaCloud::InitializeSdk();
|
||||
|
||||
// Configure the ECS instance
|
||||
ClientConfiguration configuration("<your-region-id>");
|
||||
// specify timeout when create client.
|
||||
configuration.setConnectTimeout(1500);
|
||||
configuration.setReadTimeout(4000);
|
||||
|
||||
EcsClient client("<your-access-key-id>", "<your-access-key-secret>", configuration);
|
||||
|
||||
// Create an API request and set parameters
|
||||
Model::DescribeInstancesRequest request;
|
||||
request.setPageSize(10);
|
||||
// specify timeout when request
|
||||
request.setConnectTimeout(1000);
|
||||
request.setReadTimeout(6000);
|
||||
|
||||
auto outcome = client.describeInstances(request);
|
||||
if (!outcome.isSuccess()) {
|
||||
// Handle exceptions
|
||||
std::cout << outcome.error().errorCode() << std::endl;
|
||||
AlibabaCloud::ShutdownSdk();
|
||||
return -1;
|
||||
}
|
||||
|
||||
std::cout << "totalCount: " << outcome.result().getTotalCount() << std::endl;
|
||||
|
||||
// Close the SDK
|
||||
AlibabaCloud::ShutdownSdk();
|
||||
return 0;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
**More [examples](https://github.com/aliyun/aliyun-openapi-cpp-sdk/tree/master/examples)**
|
||||
|
||||
## LICENSE
|
||||
|
||||
70
README_zh.md
70
README_zh.md
@@ -165,6 +165,76 @@ Linux 下
|
||||
~$
|
||||
```
|
||||
|
||||
## Timeout 设置
|
||||
|
||||
CPP SDK 使用 libcurl 作为底层 HTTP 传输库。
|
||||
|
||||
- 下面两个参数用来传递超时参数到 libcurl。
|
||||
|
||||
- `connectTimeout`: 连接超时设置。 [参考](https://curl.haxx.se/libcurl/c/CURLOPT_CONNECTTIMEOUT_MS.html).
|
||||
|
||||
- `readTimeout`: 传输超时设置。[参考](https://curl.haxx.se/libcurl/c/CURLOPT_TIMEOUT_MS.html)
|
||||
|
||||
- 默认值
|
||||
|
||||
- connectTimeout: 5000ms
|
||||
|
||||
- readTimeout: 10000ms
|
||||
|
||||
- 可以在创建 Client 或者发 Requst 设置超时参数。
|
||||
|
||||
- Requst 设置优先级高于 Client 设置。
|
||||
|
||||
- 输入 0 或者 -1 到 `setConnectTimeout` 和 `setReadTimeout` 可以禁用此功能。
|
||||
|
||||
下面代码是设置超时参数的例子,由于 Request 优先级高于 Client,所以最终 `ConnectTimeout` 为 `1000ms`, `readTimeout` 为 `6000ms`。
|
||||
|
||||
```cpp
|
||||
#include <iostream>
|
||||
#include <alibabacloud/core/AlibabaCloud.h>
|
||||
#include <alibabacloud/ecs/EcsClient.h>
|
||||
|
||||
using namespace AlibabaCloud;
|
||||
using namespace AlibabaCloud::Ecs;
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
// Initialize the SDK
|
||||
AlibabaCloud::InitializeSdk();
|
||||
|
||||
// Configure the ECS instance
|
||||
ClientConfiguration configuration("<your-region-id>");
|
||||
// specify timeout when create client.
|
||||
configuration.setConnectTimeout(1500);
|
||||
configuration.setReadTimeout(4000);
|
||||
|
||||
EcsClient client("<your-access-key-id>", "<your-access-key-secret>", configuration);
|
||||
|
||||
// Create an API request and set parameters
|
||||
Model::DescribeInstancesRequest request;
|
||||
request.setPageSize(10);
|
||||
// specify timeout when request
|
||||
request.setConnectTimeout(1000);
|
||||
request.setReadTimeout(6000);
|
||||
|
||||
auto outcome = client.describeInstances(request);
|
||||
if (!outcome.isSuccess()) {
|
||||
// Handle exceptions
|
||||
std::cout << outcome.error().errorCode() << std::endl;
|
||||
AlibabaCloud::ShutdownSdk();
|
||||
return -1;
|
||||
}
|
||||
|
||||
std::cout << "totalCount: " << outcome.result().getTotalCount() << std::endl;
|
||||
|
||||
// Close the SDK
|
||||
AlibabaCloud::ShutdownSdk();
|
||||
return 0;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
**更多 [例程](https://github.com/aliyun/aliyun-openapi-cpp-sdk/tree/master/examples) 请(参考)[https://github.com/aliyun/aliyun-openapi-cpp-sdk/blob/master/examples/README_zh.md]**
|
||||
|
||||
## 许可协议
|
||||
|
||||
@@ -23,55 +23,67 @@ set(afs_public_header
|
||||
set(afs_public_header_model
|
||||
include/alibabacloud/afs/model/DescribeEarlyWarningRequest.h
|
||||
include/alibabacloud/afs/model/DescribeEarlyWarningResult.h
|
||||
include/alibabacloud/afs/model/SetEarlyWarningRequest.h
|
||||
include/alibabacloud/afs/model/SetEarlyWarningResult.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaIpCityRequest.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaIpCityResult.h
|
||||
include/alibabacloud/afs/model/DescribeOrderInfoRequest.h
|
||||
include/alibabacloud/afs/model/DescribeOrderInfoResult.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaRiskRequest.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaRiskResult.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaOrderRequest.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaOrderResult.h
|
||||
include/alibabacloud/afs/model/CreateConfigurationRequest.h
|
||||
include/alibabacloud/afs/model/CreateConfigurationResult.h
|
||||
include/alibabacloud/afs/model/AnalyzeNvcRequest.h
|
||||
include/alibabacloud/afs/model/AnalyzeNvcResult.h
|
||||
include/alibabacloud/afs/model/SetEarlyWarningRequest.h
|
||||
include/alibabacloud/afs/model/SetEarlyWarningResult.h
|
||||
include/alibabacloud/afs/model/ConfigurationStyleRequest.h
|
||||
include/alibabacloud/afs/model/ConfigurationStyleResult.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaMinRequest.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaMinResult.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaRiskRequest.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaRiskResult.h
|
||||
include/alibabacloud/afs/model/AuthenticateSigRequest.h
|
||||
include/alibabacloud/afs/model/AuthenticateSigResult.h
|
||||
include/alibabacloud/afs/model/DescribeConfigNameRequest.h
|
||||
include/alibabacloud/afs/model/DescribeConfigNameResult.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaDayRequest.h
|
||||
include/alibabacloud/afs/model/DescribeCaptchaDayResult.h
|
||||
include/alibabacloud/afs/model/UpdateConfigNameRequest.h
|
||||
include/alibabacloud/afs/model/UpdateConfigNameResult.h
|
||||
include/alibabacloud/afs/model/DescribePersonMachineListRequest.h
|
||||
include/alibabacloud/afs/model/DescribePersonMachineListResult.h
|
||||
include/alibabacloud/afs/model/CreateConfigurationRequest.h
|
||||
include/alibabacloud/afs/model/CreateConfigurationResult.h
|
||||
include/alibabacloud/afs/model/AnalyzeNvcRequest.h
|
||||
include/alibabacloud/afs/model/AnalyzeNvcResult.h )
|
||||
include/alibabacloud/afs/model/DescribePersonMachineListResult.h )
|
||||
|
||||
set(afs_src
|
||||
src/AfsClient.cc
|
||||
src/model/DescribeEarlyWarningRequest.cc
|
||||
src/model/DescribeEarlyWarningResult.cc
|
||||
src/model/SetEarlyWarningRequest.cc
|
||||
src/model/SetEarlyWarningResult.cc
|
||||
src/model/DescribeCaptchaIpCityRequest.cc
|
||||
src/model/DescribeCaptchaIpCityResult.cc
|
||||
src/model/DescribeOrderInfoRequest.cc
|
||||
src/model/DescribeOrderInfoResult.cc
|
||||
src/model/DescribeCaptchaRiskRequest.cc
|
||||
src/model/DescribeCaptchaRiskResult.cc
|
||||
src/model/DescribeCaptchaOrderRequest.cc
|
||||
src/model/DescribeCaptchaOrderResult.cc
|
||||
src/model/CreateConfigurationRequest.cc
|
||||
src/model/CreateConfigurationResult.cc
|
||||
src/model/AnalyzeNvcRequest.cc
|
||||
src/model/AnalyzeNvcResult.cc
|
||||
src/model/SetEarlyWarningRequest.cc
|
||||
src/model/SetEarlyWarningResult.cc
|
||||
src/model/ConfigurationStyleRequest.cc
|
||||
src/model/ConfigurationStyleResult.cc
|
||||
src/model/DescribeCaptchaMinRequest.cc
|
||||
src/model/DescribeCaptchaMinResult.cc
|
||||
src/model/DescribeCaptchaRiskRequest.cc
|
||||
src/model/DescribeCaptchaRiskResult.cc
|
||||
src/model/AuthenticateSigRequest.cc
|
||||
src/model/AuthenticateSigResult.cc
|
||||
src/model/DescribeConfigNameRequest.cc
|
||||
src/model/DescribeConfigNameResult.cc
|
||||
src/model/DescribeCaptchaDayRequest.cc
|
||||
src/model/DescribeCaptchaDayResult.cc
|
||||
src/model/UpdateConfigNameRequest.cc
|
||||
src/model/UpdateConfigNameResult.cc
|
||||
src/model/DescribePersonMachineListRequest.cc
|
||||
src/model/DescribePersonMachineListResult.cc
|
||||
src/model/CreateConfigurationRequest.cc
|
||||
src/model/CreateConfigurationResult.cc
|
||||
src/model/AnalyzeNvcRequest.cc
|
||||
src/model/AnalyzeNvcResult.cc )
|
||||
src/model/DescribePersonMachineListResult.cc )
|
||||
|
||||
add_library(afs ${LIB_TYPE}
|
||||
${afs_public_header}
|
||||
|
||||
@@ -24,28 +24,34 @@
|
||||
#include "AfsExport.h"
|
||||
#include "model/DescribeEarlyWarningRequest.h"
|
||||
#include "model/DescribeEarlyWarningResult.h"
|
||||
#include "model/SetEarlyWarningRequest.h"
|
||||
#include "model/SetEarlyWarningResult.h"
|
||||
#include "model/DescribeCaptchaIpCityRequest.h"
|
||||
#include "model/DescribeCaptchaIpCityResult.h"
|
||||
#include "model/DescribeOrderInfoRequest.h"
|
||||
#include "model/DescribeOrderInfoResult.h"
|
||||
#include "model/DescribeCaptchaRiskRequest.h"
|
||||
#include "model/DescribeCaptchaRiskResult.h"
|
||||
#include "model/DescribeCaptchaOrderRequest.h"
|
||||
#include "model/DescribeCaptchaOrderResult.h"
|
||||
#include "model/CreateConfigurationRequest.h"
|
||||
#include "model/CreateConfigurationResult.h"
|
||||
#include "model/AnalyzeNvcRequest.h"
|
||||
#include "model/AnalyzeNvcResult.h"
|
||||
#include "model/SetEarlyWarningRequest.h"
|
||||
#include "model/SetEarlyWarningResult.h"
|
||||
#include "model/ConfigurationStyleRequest.h"
|
||||
#include "model/ConfigurationStyleResult.h"
|
||||
#include "model/DescribeCaptchaMinRequest.h"
|
||||
#include "model/DescribeCaptchaMinResult.h"
|
||||
#include "model/DescribeCaptchaRiskRequest.h"
|
||||
#include "model/DescribeCaptchaRiskResult.h"
|
||||
#include "model/AuthenticateSigRequest.h"
|
||||
#include "model/AuthenticateSigResult.h"
|
||||
#include "model/DescribeConfigNameRequest.h"
|
||||
#include "model/DescribeConfigNameResult.h"
|
||||
#include "model/DescribeCaptchaDayRequest.h"
|
||||
#include "model/DescribeCaptchaDayResult.h"
|
||||
#include "model/UpdateConfigNameRequest.h"
|
||||
#include "model/UpdateConfigNameResult.h"
|
||||
#include "model/DescribePersonMachineListRequest.h"
|
||||
#include "model/DescribePersonMachineListResult.h"
|
||||
#include "model/CreateConfigurationRequest.h"
|
||||
#include "model/CreateConfigurationResult.h"
|
||||
#include "model/AnalyzeNvcRequest.h"
|
||||
#include "model/AnalyzeNvcResult.h"
|
||||
|
||||
|
||||
namespace AlibabaCloud
|
||||
@@ -55,83 +61,101 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT AfsClient : public RpcServiceClient
|
||||
{
|
||||
public:
|
||||
typedef Outcome<Error, Model::DescribeEarlyWarningResult> DescribeEarlyWarningOutcome;
|
||||
typedef std::future<DescribeEarlyWarningOutcome> DescribeEarlyWarningOutcomeCallable;
|
||||
typedef Outcome<Error, Model::DescribeEarlyWarningResult> DescribeEarlyWarningOutcome;
|
||||
typedef std::future<DescribeEarlyWarningOutcome> DescribeEarlyWarningOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeEarlyWarningRequest&, const DescribeEarlyWarningOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeEarlyWarningAsyncHandler;
|
||||
typedef Outcome<Error, Model::SetEarlyWarningResult> SetEarlyWarningOutcome;
|
||||
typedef std::future<SetEarlyWarningOutcome> SetEarlyWarningOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::SetEarlyWarningRequest&, const SetEarlyWarningOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> SetEarlyWarningAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaIpCityResult> DescribeCaptchaIpCityOutcome;
|
||||
typedef std::future<DescribeCaptchaIpCityOutcome> DescribeCaptchaIpCityOutcomeCallable;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaIpCityResult> DescribeCaptchaIpCityOutcome;
|
||||
typedef std::future<DescribeCaptchaIpCityOutcome> DescribeCaptchaIpCityOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeCaptchaIpCityRequest&, const DescribeCaptchaIpCityOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCaptchaIpCityAsyncHandler;
|
||||
typedef Outcome<Error, Model::ConfigurationStyleResult> ConfigurationStyleOutcome;
|
||||
typedef std::future<ConfigurationStyleOutcome> ConfigurationStyleOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::ConfigurationStyleRequest&, const ConfigurationStyleOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ConfigurationStyleAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaMinResult> DescribeCaptchaMinOutcome;
|
||||
typedef std::future<DescribeCaptchaMinOutcome> DescribeCaptchaMinOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeCaptchaMinRequest&, const DescribeCaptchaMinOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCaptchaMinAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaRiskResult> DescribeCaptchaRiskOutcome;
|
||||
typedef std::future<DescribeCaptchaRiskOutcome> DescribeCaptchaRiskOutcomeCallable;
|
||||
typedef Outcome<Error, Model::DescribeOrderInfoResult> DescribeOrderInfoOutcome;
|
||||
typedef std::future<DescribeOrderInfoOutcome> DescribeOrderInfoOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeOrderInfoRequest&, const DescribeOrderInfoOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeOrderInfoAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaRiskResult> DescribeCaptchaRiskOutcome;
|
||||
typedef std::future<DescribeCaptchaRiskOutcome> DescribeCaptchaRiskOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeCaptchaRiskRequest&, const DescribeCaptchaRiskOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCaptchaRiskAsyncHandler;
|
||||
typedef Outcome<Error, Model::AuthenticateSigResult> AuthenticateSigOutcome;
|
||||
typedef std::future<AuthenticateSigOutcome> AuthenticateSigOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::AuthenticateSigRequest&, const AuthenticateSigOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> AuthenticateSigAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeConfigNameResult> DescribeConfigNameOutcome;
|
||||
typedef std::future<DescribeConfigNameOutcome> DescribeConfigNameOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeConfigNameRequest&, const DescribeConfigNameOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeConfigNameAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaDayResult> DescribeCaptchaDayOutcome;
|
||||
typedef std::future<DescribeCaptchaDayOutcome> DescribeCaptchaDayOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeCaptchaDayRequest&, const DescribeCaptchaDayOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCaptchaDayAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribePersonMachineListResult> DescribePersonMachineListOutcome;
|
||||
typedef std::future<DescribePersonMachineListOutcome> DescribePersonMachineListOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribePersonMachineListRequest&, const DescribePersonMachineListOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribePersonMachineListAsyncHandler;
|
||||
typedef Outcome<Error, Model::CreateConfigurationResult> CreateConfigurationOutcome;
|
||||
typedef std::future<CreateConfigurationOutcome> CreateConfigurationOutcomeCallable;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaOrderResult> DescribeCaptchaOrderOutcome;
|
||||
typedef std::future<DescribeCaptchaOrderOutcome> DescribeCaptchaOrderOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeCaptchaOrderRequest&, const DescribeCaptchaOrderOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCaptchaOrderAsyncHandler;
|
||||
typedef Outcome<Error, Model::CreateConfigurationResult> CreateConfigurationOutcome;
|
||||
typedef std::future<CreateConfigurationOutcome> CreateConfigurationOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::CreateConfigurationRequest&, const CreateConfigurationOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CreateConfigurationAsyncHandler;
|
||||
typedef Outcome<Error, Model::AnalyzeNvcResult> AnalyzeNvcOutcome;
|
||||
typedef std::future<AnalyzeNvcOutcome> AnalyzeNvcOutcomeCallable;
|
||||
typedef Outcome<Error, Model::AnalyzeNvcResult> AnalyzeNvcOutcome;
|
||||
typedef std::future<AnalyzeNvcOutcome> AnalyzeNvcOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::AnalyzeNvcRequest&, const AnalyzeNvcOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> AnalyzeNvcAsyncHandler;
|
||||
typedef Outcome<Error, Model::SetEarlyWarningResult> SetEarlyWarningOutcome;
|
||||
typedef std::future<SetEarlyWarningOutcome> SetEarlyWarningOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::SetEarlyWarningRequest&, const SetEarlyWarningOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> SetEarlyWarningAsyncHandler;
|
||||
typedef Outcome<Error, Model::ConfigurationStyleResult> ConfigurationStyleOutcome;
|
||||
typedef std::future<ConfigurationStyleOutcome> ConfigurationStyleOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::ConfigurationStyleRequest&, const ConfigurationStyleOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ConfigurationStyleAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaMinResult> DescribeCaptchaMinOutcome;
|
||||
typedef std::future<DescribeCaptchaMinOutcome> DescribeCaptchaMinOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeCaptchaMinRequest&, const DescribeCaptchaMinOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCaptchaMinAsyncHandler;
|
||||
typedef Outcome<Error, Model::AuthenticateSigResult> AuthenticateSigOutcome;
|
||||
typedef std::future<AuthenticateSigOutcome> AuthenticateSigOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::AuthenticateSigRequest&, const AuthenticateSigOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> AuthenticateSigAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeConfigNameResult> DescribeConfigNameOutcome;
|
||||
typedef std::future<DescribeConfigNameOutcome> DescribeConfigNameOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeConfigNameRequest&, const DescribeConfigNameOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeConfigNameAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeCaptchaDayResult> DescribeCaptchaDayOutcome;
|
||||
typedef std::future<DescribeCaptchaDayOutcome> DescribeCaptchaDayOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribeCaptchaDayRequest&, const DescribeCaptchaDayOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeCaptchaDayAsyncHandler;
|
||||
typedef Outcome<Error, Model::UpdateConfigNameResult> UpdateConfigNameOutcome;
|
||||
typedef std::future<UpdateConfigNameOutcome> UpdateConfigNameOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::UpdateConfigNameRequest&, const UpdateConfigNameOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> UpdateConfigNameAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribePersonMachineListResult> DescribePersonMachineListOutcome;
|
||||
typedef std::future<DescribePersonMachineListOutcome> DescribePersonMachineListOutcomeCallable;
|
||||
typedef std::function<void(const AfsClient*, const Model::DescribePersonMachineListRequest&, const DescribePersonMachineListOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribePersonMachineListAsyncHandler;
|
||||
|
||||
AfsClient(const Credentials &credentials, const ClientConfiguration &configuration);
|
||||
AfsClient(const std::shared_ptr<CredentialsProvider> &credentialsProvider, const ClientConfiguration &configuration);
|
||||
AfsClient(const std::string &accessKeyId, const std::string &accessKeySecret, const ClientConfiguration &configuration);
|
||||
~AfsClient();
|
||||
DescribeEarlyWarningOutcome describeEarlyWarning(const Model::DescribeEarlyWarningRequest &request)const;
|
||||
void describeEarlyWarningAsync(const Model::DescribeEarlyWarningRequest& request, const DescribeEarlyWarningAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeEarlyWarningOutcomeCallable describeEarlyWarningCallable(const Model::DescribeEarlyWarningRequest& request) const;
|
||||
SetEarlyWarningOutcome setEarlyWarning(const Model::SetEarlyWarningRequest &request)const;
|
||||
void setEarlyWarningAsync(const Model::SetEarlyWarningRequest& request, const SetEarlyWarningAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
SetEarlyWarningOutcomeCallable setEarlyWarningCallable(const Model::SetEarlyWarningRequest& request) const;
|
||||
DescribeCaptchaIpCityOutcome describeCaptchaIpCity(const Model::DescribeCaptchaIpCityRequest &request)const;
|
||||
void describeCaptchaIpCityAsync(const Model::DescribeCaptchaIpCityRequest& request, const DescribeCaptchaIpCityAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaIpCityOutcomeCallable describeCaptchaIpCityCallable(const Model::DescribeCaptchaIpCityRequest& request) const;
|
||||
ConfigurationStyleOutcome configurationStyle(const Model::ConfigurationStyleRequest &request)const;
|
||||
void configurationStyleAsync(const Model::ConfigurationStyleRequest& request, const ConfigurationStyleAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
ConfigurationStyleOutcomeCallable configurationStyleCallable(const Model::ConfigurationStyleRequest& request) const;
|
||||
DescribeCaptchaMinOutcome describeCaptchaMin(const Model::DescribeCaptchaMinRequest &request)const;
|
||||
void describeCaptchaMinAsync(const Model::DescribeCaptchaMinRequest& request, const DescribeCaptchaMinAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaMinOutcomeCallable describeCaptchaMinCallable(const Model::DescribeCaptchaMinRequest& request) const;
|
||||
DescribeCaptchaRiskOutcome describeCaptchaRisk(const Model::DescribeCaptchaRiskRequest &request)const;
|
||||
void describeCaptchaRiskAsync(const Model::DescribeCaptchaRiskRequest& request, const DescribeCaptchaRiskAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaRiskOutcomeCallable describeCaptchaRiskCallable(const Model::DescribeCaptchaRiskRequest& request) const;
|
||||
AuthenticateSigOutcome authenticateSig(const Model::AuthenticateSigRequest &request)const;
|
||||
void authenticateSigAsync(const Model::AuthenticateSigRequest& request, const AuthenticateSigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
AuthenticateSigOutcomeCallable authenticateSigCallable(const Model::AuthenticateSigRequest& request) const;
|
||||
DescribeConfigNameOutcome describeConfigName(const Model::DescribeConfigNameRequest &request)const;
|
||||
void describeConfigNameAsync(const Model::DescribeConfigNameRequest& request, const DescribeConfigNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeConfigNameOutcomeCallable describeConfigNameCallable(const Model::DescribeConfigNameRequest& request) const;
|
||||
DescribeCaptchaDayOutcome describeCaptchaDay(const Model::DescribeCaptchaDayRequest &request)const;
|
||||
void describeCaptchaDayAsync(const Model::DescribeCaptchaDayRequest& request, const DescribeCaptchaDayAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaDayOutcomeCallable describeCaptchaDayCallable(const Model::DescribeCaptchaDayRequest& request) const;
|
||||
DescribePersonMachineListOutcome describePersonMachineList(const Model::DescribePersonMachineListRequest &request)const;
|
||||
void describePersonMachineListAsync(const Model::DescribePersonMachineListRequest& request, const DescribePersonMachineListAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribePersonMachineListOutcomeCallable describePersonMachineListCallable(const Model::DescribePersonMachineListRequest& request) const;
|
||||
CreateConfigurationOutcome createConfiguration(const Model::CreateConfigurationRequest &request)const;
|
||||
void createConfigurationAsync(const Model::CreateConfigurationRequest& request, const CreateConfigurationAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
CreateConfigurationOutcomeCallable createConfigurationCallable(const Model::CreateConfigurationRequest& request) const;
|
||||
AnalyzeNvcOutcome analyzeNvc(const Model::AnalyzeNvcRequest &request)const;
|
||||
void analyzeNvcAsync(const Model::AnalyzeNvcRequest& request, const AnalyzeNvcAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
AnalyzeNvcOutcomeCallable analyzeNvcCallable(const Model::AnalyzeNvcRequest& request) const;
|
||||
DescribeEarlyWarningOutcome describeEarlyWarning(const Model::DescribeEarlyWarningRequest &request)const;
|
||||
void describeEarlyWarningAsync(const Model::DescribeEarlyWarningRequest& request, const DescribeEarlyWarningAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeEarlyWarningOutcomeCallable describeEarlyWarningCallable(const Model::DescribeEarlyWarningRequest& request) const;
|
||||
DescribeCaptchaIpCityOutcome describeCaptchaIpCity(const Model::DescribeCaptchaIpCityRequest &request)const;
|
||||
void describeCaptchaIpCityAsync(const Model::DescribeCaptchaIpCityRequest& request, const DescribeCaptchaIpCityAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaIpCityOutcomeCallable describeCaptchaIpCityCallable(const Model::DescribeCaptchaIpCityRequest& request) const;
|
||||
DescribeOrderInfoOutcome describeOrderInfo(const Model::DescribeOrderInfoRequest &request)const;
|
||||
void describeOrderInfoAsync(const Model::DescribeOrderInfoRequest& request, const DescribeOrderInfoAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeOrderInfoOutcomeCallable describeOrderInfoCallable(const Model::DescribeOrderInfoRequest& request) const;
|
||||
DescribeCaptchaRiskOutcome describeCaptchaRisk(const Model::DescribeCaptchaRiskRequest &request)const;
|
||||
void describeCaptchaRiskAsync(const Model::DescribeCaptchaRiskRequest& request, const DescribeCaptchaRiskAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaRiskOutcomeCallable describeCaptchaRiskCallable(const Model::DescribeCaptchaRiskRequest& request) const;
|
||||
DescribeCaptchaOrderOutcome describeCaptchaOrder(const Model::DescribeCaptchaOrderRequest &request)const;
|
||||
void describeCaptchaOrderAsync(const Model::DescribeCaptchaOrderRequest& request, const DescribeCaptchaOrderAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaOrderOutcomeCallable describeCaptchaOrderCallable(const Model::DescribeCaptchaOrderRequest& request) const;
|
||||
CreateConfigurationOutcome createConfiguration(const Model::CreateConfigurationRequest &request)const;
|
||||
void createConfigurationAsync(const Model::CreateConfigurationRequest& request, const CreateConfigurationAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
CreateConfigurationOutcomeCallable createConfigurationCallable(const Model::CreateConfigurationRequest& request) const;
|
||||
AnalyzeNvcOutcome analyzeNvc(const Model::AnalyzeNvcRequest &request)const;
|
||||
void analyzeNvcAsync(const Model::AnalyzeNvcRequest& request, const AnalyzeNvcAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
AnalyzeNvcOutcomeCallable analyzeNvcCallable(const Model::AnalyzeNvcRequest& request) const;
|
||||
SetEarlyWarningOutcome setEarlyWarning(const Model::SetEarlyWarningRequest &request)const;
|
||||
void setEarlyWarningAsync(const Model::SetEarlyWarningRequest& request, const SetEarlyWarningAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
SetEarlyWarningOutcomeCallable setEarlyWarningCallable(const Model::SetEarlyWarningRequest& request) const;
|
||||
ConfigurationStyleOutcome configurationStyle(const Model::ConfigurationStyleRequest &request)const;
|
||||
void configurationStyleAsync(const Model::ConfigurationStyleRequest& request, const ConfigurationStyleAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
ConfigurationStyleOutcomeCallable configurationStyleCallable(const Model::ConfigurationStyleRequest& request) const;
|
||||
DescribeCaptchaMinOutcome describeCaptchaMin(const Model::DescribeCaptchaMinRequest &request)const;
|
||||
void describeCaptchaMinAsync(const Model::DescribeCaptchaMinRequest& request, const DescribeCaptchaMinAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaMinOutcomeCallable describeCaptchaMinCallable(const Model::DescribeCaptchaMinRequest& request) const;
|
||||
AuthenticateSigOutcome authenticateSig(const Model::AuthenticateSigRequest &request)const;
|
||||
void authenticateSigAsync(const Model::AuthenticateSigRequest& request, const AuthenticateSigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
AuthenticateSigOutcomeCallable authenticateSigCallable(const Model::AuthenticateSigRequest& request) const;
|
||||
DescribeConfigNameOutcome describeConfigName(const Model::DescribeConfigNameRequest &request)const;
|
||||
void describeConfigNameAsync(const Model::DescribeConfigNameRequest& request, const DescribeConfigNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeConfigNameOutcomeCallable describeConfigNameCallable(const Model::DescribeConfigNameRequest& request) const;
|
||||
DescribeCaptchaDayOutcome describeCaptchaDay(const Model::DescribeCaptchaDayRequest &request)const;
|
||||
void describeCaptchaDayAsync(const Model::DescribeCaptchaDayRequest& request, const DescribeCaptchaDayAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeCaptchaDayOutcomeCallable describeCaptchaDayCallable(const Model::DescribeCaptchaDayRequest& request) const;
|
||||
UpdateConfigNameOutcome updateConfigName(const Model::UpdateConfigNameRequest &request)const;
|
||||
void updateConfigNameAsync(const Model::UpdateConfigNameRequest& request, const UpdateConfigNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
UpdateConfigNameOutcomeCallable updateConfigNameCallable(const Model::UpdateConfigNameRequest& request) const;
|
||||
DescribePersonMachineListOutcome describePersonMachineList(const Model::DescribePersonMachineListRequest &request)const;
|
||||
void describePersonMachineListAsync(const Model::DescribePersonMachineListRequest& request, const DescribePersonMachineListAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribePersonMachineListOutcomeCallable describePersonMachineListCallable(const Model::DescribePersonMachineListRequest& request) const;
|
||||
|
||||
private:
|
||||
std::shared_ptr<EndpointProvider> endpointProvider_;
|
||||
|
||||
@@ -35,8 +35,6 @@ namespace AlibabaCloud
|
||||
AnalyzeNvcRequest();
|
||||
~AnalyzeNvcRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getData()const;
|
||||
@@ -45,7 +43,6 @@ namespace AlibabaCloud
|
||||
void setScoreJsonStr(const std::string& scoreJsonStr);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
std::string data_;
|
||||
std::string scoreJsonStr_;
|
||||
|
||||
@@ -37,12 +37,12 @@ namespace AlibabaCloud
|
||||
AnalyzeNvcResult();
|
||||
explicit AnalyzeNvcResult(const std::string &payload);
|
||||
~AnalyzeNvcResult();
|
||||
std::string getBizCode()const;
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string bizCode_;
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -37,8 +37,6 @@ namespace AlibabaCloud
|
||||
|
||||
std::string getSig()const;
|
||||
void setSig(const std::string& sig);
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getRemoteIp()const;
|
||||
void setRemoteIp(const std::string& remoteIp);
|
||||
std::string getSourceIp()const;
|
||||
@@ -54,7 +52,6 @@ namespace AlibabaCloud
|
||||
|
||||
private:
|
||||
std::string sig_;
|
||||
long resourceOwnerId_;
|
||||
std::string remoteIp_;
|
||||
std::string sourceIp_;
|
||||
std::string appKey_;
|
||||
|
||||
@@ -37,18 +37,18 @@ namespace AlibabaCloud
|
||||
AuthenticateSigResult();
|
||||
explicit AuthenticateSigResult(const std::string &payload);
|
||||
~AuthenticateSigResult();
|
||||
std::string getMsg()const;
|
||||
int getCode()const;
|
||||
std::string getRiskLevel()const;
|
||||
std::string getDetail()const;
|
||||
std::string getMsg()const;
|
||||
int getCode()const;
|
||||
std::string getRiskLevel()const;
|
||||
std::string getDetail()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string msg_;
|
||||
int code_;
|
||||
std::string riskLevel_;
|
||||
std::string detail_;
|
||||
std::string msg_;
|
||||
int code_;
|
||||
std::string riskLevel_;
|
||||
std::string detail_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,21 +35,21 @@ namespace AlibabaCloud
|
||||
ConfigurationStyleRequest();
|
||||
~ConfigurationStyleRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getConfigurationMethod()const;
|
||||
void setConfigurationMethod(const std::string& configurationMethod);
|
||||
std::string getRefExtId()const;
|
||||
void setRefExtId(const std::string& refExtId);
|
||||
std::string getApplyType()const;
|
||||
void setApplyType(const std::string& applyType);
|
||||
std::string getScene()const;
|
||||
void setScene(const std::string& scene);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
std::string configurationMethod_;
|
||||
std::string refExtId_;
|
||||
std::string applyType_;
|
||||
std::string scene_;
|
||||
|
||||
|
||||
@@ -32,28 +32,33 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT ConfigurationStyleResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct CodeData
|
||||
{
|
||||
std::string java;
|
||||
std::string html;
|
||||
std::string php;
|
||||
std::string net;
|
||||
std::string nodeJs;
|
||||
std::string python;
|
||||
};
|
||||
struct CodeData
|
||||
{
|
||||
std::string java;
|
||||
std::string javaUrl;
|
||||
std::string phpUrl;
|
||||
std::string pythonUrl;
|
||||
std::string html;
|
||||
std::string php;
|
||||
std::string nodeJsUrl;
|
||||
std::string net;
|
||||
std::string netUrl;
|
||||
std::string nodeJs;
|
||||
std::string python;
|
||||
};
|
||||
|
||||
|
||||
ConfigurationStyleResult();
|
||||
explicit ConfigurationStyleResult(const std::string &payload);
|
||||
~ConfigurationStyleResult();
|
||||
std::vector<CodeData> getCodeData()const;
|
||||
std::string getBizCode()const;
|
||||
CodeData getCodeData()const;
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::vector<CodeData> codeData_;
|
||||
std::string bizCode_;
|
||||
CodeData codeData_;
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,8 +35,6 @@ namespace AlibabaCloud
|
||||
CreateConfigurationRequest();
|
||||
~CreateConfigurationRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getConfigurationName()const;
|
||||
@@ -51,7 +49,6 @@ namespace AlibabaCloud
|
||||
void setScene(const std::string& scene);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
std::string configurationName_;
|
||||
std::string maxPV_;
|
||||
|
||||
@@ -37,12 +37,14 @@ namespace AlibabaCloud
|
||||
CreateConfigurationResult();
|
||||
explicit CreateConfigurationResult(const std::string &payload);
|
||||
~CreateConfigurationResult();
|
||||
std::string getBizCode()const;
|
||||
std::string getRefExtId()const;
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string bizCode_;
|
||||
std::string refExtId_;
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,21 +35,21 @@ namespace AlibabaCloud
|
||||
DescribeCaptchaDayRequest();
|
||||
~DescribeCaptchaDayRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getConfigName()const;
|
||||
void setConfigName(const std::string& configName);
|
||||
std::string getRefExtId()const;
|
||||
void setRefExtId(const std::string& refExtId);
|
||||
std::string getTime()const;
|
||||
void setTime(const std::string& time);
|
||||
std::string getType()const;
|
||||
void setType(const std::string& type);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
std::string configName_;
|
||||
std::string refExtId_;
|
||||
std::string time_;
|
||||
std::string type_;
|
||||
|
||||
|
||||
@@ -32,33 +32,33 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeCaptchaDayResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct CaptchaDay
|
||||
{
|
||||
int init;
|
||||
int maliciousFlow;
|
||||
int pass;
|
||||
int checkTested;
|
||||
int askForVerify;
|
||||
int uncheckTested;
|
||||
int legalSign;
|
||||
int direcetStrategyInterception;
|
||||
int twiceVerify;
|
||||
};
|
||||
struct CaptchaDay
|
||||
{
|
||||
int init;
|
||||
int maliciousFlow;
|
||||
int pass;
|
||||
int checkTested;
|
||||
int askForVerify;
|
||||
int uncheckTested;
|
||||
int legalSign;
|
||||
int direcetStrategyInterception;
|
||||
int twiceVerify;
|
||||
};
|
||||
|
||||
|
||||
DescribeCaptchaDayResult();
|
||||
explicit DescribeCaptchaDayResult(const std::string &payload);
|
||||
~DescribeCaptchaDayResult();
|
||||
std::vector<CaptchaDay> getCaptchaDay()const;
|
||||
std::string getBizCode()const;
|
||||
bool getHasData()const;
|
||||
CaptchaDay getCaptchaDay()const;
|
||||
std::string getBizCode()const;
|
||||
bool getHasData()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::vector<CaptchaDay> captchaDay_;
|
||||
std::string bizCode_;
|
||||
bool hasData_;
|
||||
CaptchaDay captchaDay_;
|
||||
std::string bizCode_;
|
||||
bool hasData_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,21 +35,21 @@ namespace AlibabaCloud
|
||||
DescribeCaptchaIpCityRequest();
|
||||
~DescribeCaptchaIpCityRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getConfigName()const;
|
||||
void setConfigName(const std::string& configName);
|
||||
std::string getRefExtId()const;
|
||||
void setRefExtId(const std::string& refExtId);
|
||||
std::string getTime()const;
|
||||
void setTime(const std::string& time);
|
||||
std::string getType()const;
|
||||
void setType(const std::string& type);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
std::string configName_;
|
||||
std::string refExtId_;
|
||||
std::string time_;
|
||||
std::string type_;
|
||||
|
||||
|
||||
@@ -32,35 +32,35 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeCaptchaIpCityResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct CaptchaCitie
|
||||
{
|
||||
std::string lng;
|
||||
int pv;
|
||||
std::string lat;
|
||||
std::string location;
|
||||
};
|
||||
struct CaptchaIp
|
||||
{
|
||||
std::string ip;
|
||||
int value;
|
||||
};
|
||||
struct CaptchaCitie
|
||||
{
|
||||
std::string lng;
|
||||
int pv;
|
||||
std::string lat;
|
||||
std::string location;
|
||||
};
|
||||
struct CaptchaIp
|
||||
{
|
||||
std::string ip;
|
||||
int value;
|
||||
};
|
||||
|
||||
|
||||
DescribeCaptchaIpCityResult();
|
||||
explicit DescribeCaptchaIpCityResult(const std::string &payload);
|
||||
~DescribeCaptchaIpCityResult();
|
||||
std::vector<CaptchaIp> getCaptchaIps()const;
|
||||
std::vector<CaptchaCitie> getCaptchaCities()const;
|
||||
std::string getBizCode()const;
|
||||
bool getHasData()const;
|
||||
std::vector<CaptchaIp> getCaptchaIps()const;
|
||||
std::vector<CaptchaCitie> getCaptchaCities()const;
|
||||
std::string getBizCode()const;
|
||||
bool getHasData()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::vector<CaptchaIp> captchaIps_;
|
||||
std::vector<CaptchaCitie> captchaCities_;
|
||||
std::string bizCode_;
|
||||
bool hasData_;
|
||||
std::vector<CaptchaIp> captchaIps_;
|
||||
std::vector<CaptchaCitie> captchaCities_;
|
||||
std::string bizCode_;
|
||||
bool hasData_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,21 +35,21 @@ namespace AlibabaCloud
|
||||
DescribeCaptchaMinRequest();
|
||||
~DescribeCaptchaMinRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getConfigName()const;
|
||||
void setConfigName(const std::string& configName);
|
||||
std::string getRefExtId()const;
|
||||
void setRefExtId(const std::string& refExtId);
|
||||
std::string getTime()const;
|
||||
void setTime(const std::string& time);
|
||||
std::string getType()const;
|
||||
void setType(const std::string& type);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
std::string configName_;
|
||||
std::string refExtId_;
|
||||
std::string time_;
|
||||
std::string type_;
|
||||
|
||||
|
||||
@@ -32,27 +32,27 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeCaptchaMinResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct CaptchaMin
|
||||
{
|
||||
std::string pass;
|
||||
std::string time;
|
||||
std::string interception;
|
||||
};
|
||||
struct CaptchaMin
|
||||
{
|
||||
std::string pass;
|
||||
std::string time;
|
||||
std::string interception;
|
||||
};
|
||||
|
||||
|
||||
DescribeCaptchaMinResult();
|
||||
explicit DescribeCaptchaMinResult(const std::string &payload);
|
||||
~DescribeCaptchaMinResult();
|
||||
std::vector<CaptchaMin> getCaptchaMins()const;
|
||||
std::string getBizCode()const;
|
||||
bool getHasData()const;
|
||||
std::vector<CaptchaMin> getCaptchaMins()const;
|
||||
std::string getBizCode()const;
|
||||
bool getHasData()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::vector<CaptchaMin> captchaMins_;
|
||||
std::string bizCode_;
|
||||
bool hasData_;
|
||||
std::vector<CaptchaMin> captchaMins_;
|
||||
std::string bizCode_;
|
||||
bool hasData_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_AFS_MODEL_DESCRIBECAPTCHAORDERREQUEST_H_
|
||||
#define ALIBABACLOUD_AFS_MODEL_DESCRIBECAPTCHAORDERREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/afs/AfsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Afs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeCaptchaOrderRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
DescribeCaptchaOrderRequest();
|
||||
~DescribeCaptchaOrderRequest();
|
||||
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getLang()const;
|
||||
void setLang(const std::string& lang);
|
||||
|
||||
private:
|
||||
std::string sourceIp_;
|
||||
std::string lang_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_AFS_MODEL_DESCRIBECAPTCHAORDERREQUEST_H_
|
||||
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_AFS_MODEL_DESCRIBECAPTCHAORDERRESULT_H_
|
||||
#define ALIBABACLOUD_AFS_MODEL_DESCRIBECAPTCHAORDERRESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/afs/AfsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Afs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeCaptchaOrderResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
DescribeCaptchaOrderResult();
|
||||
explicit DescribeCaptchaOrderResult(const std::string &payload);
|
||||
~DescribeCaptchaOrderResult();
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_AFS_MODEL_DESCRIBECAPTCHAORDERRESULT_H_
|
||||
@@ -35,19 +35,19 @@ namespace AlibabaCloud
|
||||
DescribeCaptchaRiskRequest();
|
||||
~DescribeCaptchaRiskRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getConfigName()const;
|
||||
void setConfigName(const std::string& configName);
|
||||
std::string getRefExtId()const;
|
||||
void setRefExtId(const std::string& refExtId);
|
||||
std::string getTime()const;
|
||||
void setTime(const std::string& time);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
std::string configName_;
|
||||
std::string refExtId_;
|
||||
std::string time_;
|
||||
|
||||
};
|
||||
|
||||
@@ -37,18 +37,18 @@ namespace AlibabaCloud
|
||||
DescribeCaptchaRiskResult();
|
||||
explicit DescribeCaptchaRiskResult(const std::string &payload);
|
||||
~DescribeCaptchaRiskResult();
|
||||
int getNumOfLastMonth()const;
|
||||
std::string getRiskLevel()const;
|
||||
std::string getBizCode()const;
|
||||
int getNumOfThisMonth()const;
|
||||
int getNumOfLastMonth()const;
|
||||
std::string getRiskLevel()const;
|
||||
std::string getBizCode()const;
|
||||
int getNumOfThisMonth()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
int numOfLastMonth_;
|
||||
std::string riskLevel_;
|
||||
std::string bizCode_;
|
||||
int numOfThisMonth_;
|
||||
int numOfLastMonth_;
|
||||
std::string riskLevel_;
|
||||
std::string bizCode_;
|
||||
int numOfThisMonth_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,13 +35,10 @@ namespace AlibabaCloud
|
||||
DescribeConfigNameRequest();
|
||||
~DescribeConfigNameRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
|
||||
};
|
||||
|
||||
@@ -32,21 +32,27 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeConfigNameResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct ConfigName
|
||||
{
|
||||
std::string refExtId;
|
||||
std::string configName;
|
||||
std::string aliUid;
|
||||
};
|
||||
|
||||
|
||||
DescribeConfigNameResult();
|
||||
explicit DescribeConfigNameResult(const std::string &payload);
|
||||
~DescribeConfigNameResult();
|
||||
std::string getConfigNames()const;
|
||||
bool getHasConfig()const;
|
||||
std::string getBizCode()const;
|
||||
std::vector<ConfigName> getConfigNames()const;
|
||||
bool getHasConfig()const;
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string configNames_;
|
||||
bool hasConfig_;
|
||||
std::string bizCode_;
|
||||
std::vector<ConfigName> configNames_;
|
||||
bool hasConfig_;
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,13 +35,10 @@ namespace AlibabaCloud
|
||||
DescribeEarlyWarningRequest();
|
||||
~DescribeEarlyWarningRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
|
||||
};
|
||||
|
||||
@@ -32,32 +32,32 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeEarlyWarningResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct EarlyWarning
|
||||
{
|
||||
bool timeOpen;
|
||||
std::string content;
|
||||
std::string channel;
|
||||
std::string title;
|
||||
std::string frequency;
|
||||
std::string timeEnd;
|
||||
bool warnOpen;
|
||||
std::string timeBegin;
|
||||
};
|
||||
struct EarlyWarning
|
||||
{
|
||||
bool timeOpen;
|
||||
std::string content;
|
||||
std::string channel;
|
||||
std::string title;
|
||||
std::string frequency;
|
||||
std::string timeEnd;
|
||||
bool warnOpen;
|
||||
std::string timeBegin;
|
||||
};
|
||||
|
||||
|
||||
DescribeEarlyWarningResult();
|
||||
explicit DescribeEarlyWarningResult(const std::string &payload);
|
||||
~DescribeEarlyWarningResult();
|
||||
bool getHasWarning()const;
|
||||
std::vector<EarlyWarning> getEarlyWarnings()const;
|
||||
std::string getBizCode()const;
|
||||
bool getHasWarning()const;
|
||||
std::vector<EarlyWarning> getEarlyWarnings()const;
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
bool hasWarning_;
|
||||
std::vector<EarlyWarning> earlyWarnings_;
|
||||
std::string bizCode_;
|
||||
bool hasWarning_;
|
||||
std::vector<EarlyWarning> earlyWarnings_;
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_AFS_MODEL_DESCRIBEORDERINFOREQUEST_H_
|
||||
#define ALIBABACLOUD_AFS_MODEL_DESCRIBEORDERINFOREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/afs/AfsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Afs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeOrderInfoRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
DescribeOrderInfoRequest();
|
||||
~DescribeOrderInfoRequest();
|
||||
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
|
||||
private:
|
||||
std::string sourceIp_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_AFS_MODEL_DESCRIBEORDERINFOREQUEST_H_
|
||||
59
afs/include/alibabacloud/afs/model/DescribeOrderInfoResult.h
Normal file
59
afs/include/alibabacloud/afs/model/DescribeOrderInfoResult.h
Normal file
@@ -0,0 +1,59 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_AFS_MODEL_DESCRIBEORDERINFORESULT_H_
|
||||
#define ALIBABACLOUD_AFS_MODEL_DESCRIBEORDERINFORESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/afs/AfsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Afs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribeOrderInfoResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
DescribeOrderInfoResult();
|
||||
explicit DescribeOrderInfoResult(const std::string &payload);
|
||||
~DescribeOrderInfoResult();
|
||||
std::string getOrderLevel()const;
|
||||
std::string getNum()const;
|
||||
std::string getEndDate()const;
|
||||
std::string getBizCode()const;
|
||||
std::string getBeginDate()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string orderLevel_;
|
||||
std::string num_;
|
||||
std::string endDate_;
|
||||
std::string bizCode_;
|
||||
std::string beginDate_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_AFS_MODEL_DESCRIBEORDERINFORESULT_H_
|
||||
@@ -35,13 +35,10 @@ namespace AlibabaCloud
|
||||
DescribePersonMachineListRequest();
|
||||
~DescribePersonMachineListRequest();
|
||||
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string sourceIp_;
|
||||
|
||||
};
|
||||
|
||||
@@ -32,33 +32,35 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_AFS_EXPORT DescribePersonMachineListResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct PersonMachineRes
|
||||
{
|
||||
struct PersonMachine
|
||||
{
|
||||
std::string configurationMethod;
|
||||
std::string applyType;
|
||||
std::string lastUpdate;
|
||||
std::string appkey;
|
||||
std::string configurationName;
|
||||
std::string scene;
|
||||
};
|
||||
std::string hasConfiguration;
|
||||
std::vector<PersonMachine> personMachines;
|
||||
};
|
||||
struct PersonMachineRes
|
||||
{
|
||||
struct PersonMachine
|
||||
{
|
||||
std::string configurationMethod;
|
||||
std::string applyType;
|
||||
std::string lastUpdate;
|
||||
std::string appkey;
|
||||
std::string extId;
|
||||
std::string configurationName;
|
||||
std::string scene;
|
||||
std::string sceneOriginal;
|
||||
};
|
||||
std::string hasConfiguration;
|
||||
std::vector<PersonMachine> personMachines;
|
||||
};
|
||||
|
||||
|
||||
DescribePersonMachineListResult();
|
||||
explicit DescribePersonMachineListResult(const std::string &payload);
|
||||
~DescribePersonMachineListResult();
|
||||
std::vector<PersonMachineRes> getPersonMachineRes()const;
|
||||
std::string getBizCode()const;
|
||||
PersonMachineRes getPersonMachineRes()const;
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::vector<PersonMachineRes> personMachineRes_;
|
||||
std::string bizCode_;
|
||||
PersonMachineRes personMachineRes_;
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -37,8 +37,6 @@ namespace AlibabaCloud
|
||||
|
||||
std::string getTimeEnd()const;
|
||||
void setTimeEnd(const std::string& timeEnd);
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
bool getWarnOpen()const;
|
||||
void setWarnOpen(bool warnOpen);
|
||||
std::string getSourceIp()const;
|
||||
@@ -56,7 +54,6 @@ namespace AlibabaCloud
|
||||
|
||||
private:
|
||||
std::string timeEnd_;
|
||||
long resourceOwnerId_;
|
||||
bool warnOpen_;
|
||||
std::string sourceIp_;
|
||||
std::string channel_;
|
||||
|
||||
@@ -37,12 +37,12 @@ namespace AlibabaCloud
|
||||
SetEarlyWarningResult();
|
||||
explicit SetEarlyWarningResult(const std::string &payload);
|
||||
~SetEarlyWarningResult();
|
||||
std::string getBizCode()const;
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string bizCode_;
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
57
afs/include/alibabacloud/afs/model/UpdateConfigNameRequest.h
Normal file
57
afs/include/alibabacloud/afs/model/UpdateConfigNameRequest.h
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_AFS_MODEL_UPDATECONFIGNAMEREQUEST_H_
|
||||
#define ALIBABACLOUD_AFS_MODEL_UPDATECONFIGNAMEREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/afs/AfsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Afs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_AFS_EXPORT UpdateConfigNameRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
UpdateConfigNameRequest();
|
||||
~UpdateConfigNameRequest();
|
||||
|
||||
std::string getSourceIp()const;
|
||||
void setSourceIp(const std::string& sourceIp);
|
||||
std::string getConfigName()const;
|
||||
void setConfigName(const std::string& configName);
|
||||
std::string getRefExtId()const;
|
||||
void setRefExtId(const std::string& refExtId);
|
||||
std::string getLang()const;
|
||||
void setLang(const std::string& lang);
|
||||
|
||||
private:
|
||||
std::string sourceIp_;
|
||||
std::string configName_;
|
||||
std::string refExtId_;
|
||||
std::string lang_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_AFS_MODEL_UPDATECONFIGNAMEREQUEST_H_
|
||||
51
afs/include/alibabacloud/afs/model/UpdateConfigNameResult.h
Normal file
51
afs/include/alibabacloud/afs/model/UpdateConfigNameResult.h
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_AFS_MODEL_UPDATECONFIGNAMERESULT_H_
|
||||
#define ALIBABACLOUD_AFS_MODEL_UPDATECONFIGNAMERESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/afs/AfsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Afs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_AFS_EXPORT UpdateConfigNameResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
UpdateConfigNameResult();
|
||||
explicit UpdateConfigNameResult(const std::string &payload);
|
||||
~UpdateConfigNameResult();
|
||||
std::string getBizCode()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string bizCode_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_AFS_MODEL_UPDATECONFIGNAMERESULT_H_
|
||||
@@ -31,21 +31,21 @@ AfsClient::AfsClient(const Credentials &credentials, const ClientConfiguration &
|
||||
RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(credentials), configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(credentials, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "afs");
|
||||
}
|
||||
|
||||
AfsClient::AfsClient(const std::shared_ptr<CredentialsProvider>& credentialsProvider, const ClientConfiguration & configuration) :
|
||||
RpcServiceClient(SERVICE_NAME, credentialsProvider, configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(credentialsProvider, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "afs");
|
||||
}
|
||||
|
||||
AfsClient::AfsClient(const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) :
|
||||
RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(accessKeyId, accessKeySecret), configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(accessKeyId, accessKeySecret, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "afs");
|
||||
}
|
||||
|
||||
AfsClient::~AfsClient()
|
||||
@@ -86,43 +86,7 @@ AfsClient::DescribeEarlyWarningOutcomeCallable AfsClient::describeEarlyWarningCa
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::SetEarlyWarningOutcome AfsClient::setEarlyWarning(const SetEarlyWarningRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return SetEarlyWarningOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return SetEarlyWarningOutcome(SetEarlyWarningResult(outcome.result()));
|
||||
else
|
||||
return SetEarlyWarningOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::setEarlyWarningAsync(const SetEarlyWarningRequest& request, const SetEarlyWarningAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, setEarlyWarning(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::SetEarlyWarningOutcomeCallable AfsClient::setEarlyWarningCallable(const SetEarlyWarningRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<SetEarlyWarningOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->setEarlyWarning(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
|
||||
AfsClient::DescribeCaptchaIpCityOutcome AfsClient::describeCaptchaIpCity(const DescribeCaptchaIpCityRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -158,79 +122,43 @@ AfsClient::DescribeCaptchaIpCityOutcomeCallable AfsClient::describeCaptchaIpCity
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::ConfigurationStyleOutcome AfsClient::configurationStyle(const ConfigurationStyleRequest &request) const
|
||||
|
||||
AfsClient::DescribeOrderInfoOutcome AfsClient::describeOrderInfo(const DescribeOrderInfoRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return ConfigurationStyleOutcome(endpointOutcome.error());
|
||||
return DescribeOrderInfoOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return ConfigurationStyleOutcome(ConfigurationStyleResult(outcome.result()));
|
||||
return DescribeOrderInfoOutcome(DescribeOrderInfoResult(outcome.result()));
|
||||
else
|
||||
return ConfigurationStyleOutcome(outcome.error());
|
||||
return DescribeOrderInfoOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::configurationStyleAsync(const ConfigurationStyleRequest& request, const ConfigurationStyleAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
void AfsClient::describeOrderInfoAsync(const DescribeOrderInfoRequest& request, const DescribeOrderInfoAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, configurationStyle(request), context);
|
||||
handler(this, request, describeOrderInfo(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::ConfigurationStyleOutcomeCallable AfsClient::configurationStyleCallable(const ConfigurationStyleRequest &request) const
|
||||
AfsClient::DescribeOrderInfoOutcomeCallable AfsClient::describeOrderInfoCallable(const DescribeOrderInfoRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<ConfigurationStyleOutcome()>>(
|
||||
auto task = std::make_shared<std::packaged_task<DescribeOrderInfoOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->configurationStyle(request);
|
||||
return this->describeOrderInfo(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaMinOutcome AfsClient::describeCaptchaMin(const DescribeCaptchaMinRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeCaptchaMinOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeCaptchaMinOutcome(DescribeCaptchaMinResult(outcome.result()));
|
||||
else
|
||||
return DescribeCaptchaMinOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describeCaptchaMinAsync(const DescribeCaptchaMinRequest& request, const DescribeCaptchaMinAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeCaptchaMin(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaMinOutcomeCallable AfsClient::describeCaptchaMinCallable(const DescribeCaptchaMinRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeCaptchaMinOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeCaptchaMin(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
|
||||
AfsClient::DescribeCaptchaRiskOutcome AfsClient::describeCaptchaRisk(const DescribeCaptchaRiskRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -266,151 +194,43 @@ AfsClient::DescribeCaptchaRiskOutcomeCallable AfsClient::describeCaptchaRiskCall
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::AuthenticateSigOutcome AfsClient::authenticateSig(const AuthenticateSigRequest &request) const
|
||||
|
||||
AfsClient::DescribeCaptchaOrderOutcome AfsClient::describeCaptchaOrder(const DescribeCaptchaOrderRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return AuthenticateSigOutcome(endpointOutcome.error());
|
||||
return DescribeCaptchaOrderOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return AuthenticateSigOutcome(AuthenticateSigResult(outcome.result()));
|
||||
return DescribeCaptchaOrderOutcome(DescribeCaptchaOrderResult(outcome.result()));
|
||||
else
|
||||
return AuthenticateSigOutcome(outcome.error());
|
||||
return DescribeCaptchaOrderOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::authenticateSigAsync(const AuthenticateSigRequest& request, const AuthenticateSigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
void AfsClient::describeCaptchaOrderAsync(const DescribeCaptchaOrderRequest& request, const DescribeCaptchaOrderAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, authenticateSig(request), context);
|
||||
handler(this, request, describeCaptchaOrder(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::AuthenticateSigOutcomeCallable AfsClient::authenticateSigCallable(const AuthenticateSigRequest &request) const
|
||||
AfsClient::DescribeCaptchaOrderOutcomeCallable AfsClient::describeCaptchaOrderCallable(const DescribeCaptchaOrderRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<AuthenticateSigOutcome()>>(
|
||||
auto task = std::make_shared<std::packaged_task<DescribeCaptchaOrderOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->authenticateSig(request);
|
||||
return this->describeCaptchaOrder(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribeConfigNameOutcome AfsClient::describeConfigName(const DescribeConfigNameRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeConfigNameOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeConfigNameOutcome(DescribeConfigNameResult(outcome.result()));
|
||||
else
|
||||
return DescribeConfigNameOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describeConfigNameAsync(const DescribeConfigNameRequest& request, const DescribeConfigNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeConfigName(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribeConfigNameOutcomeCallable AfsClient::describeConfigNameCallable(const DescribeConfigNameRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeConfigNameOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeConfigName(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaDayOutcome AfsClient::describeCaptchaDay(const DescribeCaptchaDayRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeCaptchaDayOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeCaptchaDayOutcome(DescribeCaptchaDayResult(outcome.result()));
|
||||
else
|
||||
return DescribeCaptchaDayOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describeCaptchaDayAsync(const DescribeCaptchaDayRequest& request, const DescribeCaptchaDayAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeCaptchaDay(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaDayOutcomeCallable AfsClient::describeCaptchaDayCallable(const DescribeCaptchaDayRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeCaptchaDayOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeCaptchaDay(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribePersonMachineListOutcome AfsClient::describePersonMachineList(const DescribePersonMachineListRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribePersonMachineListOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribePersonMachineListOutcome(DescribePersonMachineListResult(outcome.result()));
|
||||
else
|
||||
return DescribePersonMachineListOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describePersonMachineListAsync(const DescribePersonMachineListRequest& request, const DescribePersonMachineListAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describePersonMachineList(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribePersonMachineListOutcomeCallable AfsClient::describePersonMachineListCallable(const DescribePersonMachineListRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribePersonMachineListOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describePersonMachineList(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
|
||||
AfsClient::CreateConfigurationOutcome AfsClient::createConfiguration(const CreateConfigurationRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -446,7 +266,7 @@ AfsClient::CreateConfigurationOutcomeCallable AfsClient::createConfigurationCall
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
|
||||
AfsClient::AnalyzeNvcOutcome AfsClient::analyzeNvc(const AnalyzeNvcRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -482,4 +302,292 @@ AfsClient::AnalyzeNvcOutcomeCallable AfsClient::analyzeNvcCallable(const Analyze
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::SetEarlyWarningOutcome AfsClient::setEarlyWarning(const SetEarlyWarningRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return SetEarlyWarningOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return SetEarlyWarningOutcome(SetEarlyWarningResult(outcome.result()));
|
||||
else
|
||||
return SetEarlyWarningOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::setEarlyWarningAsync(const SetEarlyWarningRequest& request, const SetEarlyWarningAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, setEarlyWarning(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::SetEarlyWarningOutcomeCallable AfsClient::setEarlyWarningCallable(const SetEarlyWarningRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<SetEarlyWarningOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->setEarlyWarning(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::ConfigurationStyleOutcome AfsClient::configurationStyle(const ConfigurationStyleRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return ConfigurationStyleOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return ConfigurationStyleOutcome(ConfigurationStyleResult(outcome.result()));
|
||||
else
|
||||
return ConfigurationStyleOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::configurationStyleAsync(const ConfigurationStyleRequest& request, const ConfigurationStyleAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, configurationStyle(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::ConfigurationStyleOutcomeCallable AfsClient::configurationStyleCallable(const ConfigurationStyleRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<ConfigurationStyleOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->configurationStyle(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaMinOutcome AfsClient::describeCaptchaMin(const DescribeCaptchaMinRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeCaptchaMinOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeCaptchaMinOutcome(DescribeCaptchaMinResult(outcome.result()));
|
||||
else
|
||||
return DescribeCaptchaMinOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describeCaptchaMinAsync(const DescribeCaptchaMinRequest& request, const DescribeCaptchaMinAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeCaptchaMin(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaMinOutcomeCallable AfsClient::describeCaptchaMinCallable(const DescribeCaptchaMinRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeCaptchaMinOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeCaptchaMin(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::AuthenticateSigOutcome AfsClient::authenticateSig(const AuthenticateSigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return AuthenticateSigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return AuthenticateSigOutcome(AuthenticateSigResult(outcome.result()));
|
||||
else
|
||||
return AuthenticateSigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::authenticateSigAsync(const AuthenticateSigRequest& request, const AuthenticateSigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, authenticateSig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::AuthenticateSigOutcomeCallable AfsClient::authenticateSigCallable(const AuthenticateSigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<AuthenticateSigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->authenticateSig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribeConfigNameOutcome AfsClient::describeConfigName(const DescribeConfigNameRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeConfigNameOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeConfigNameOutcome(DescribeConfigNameResult(outcome.result()));
|
||||
else
|
||||
return DescribeConfigNameOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describeConfigNameAsync(const DescribeConfigNameRequest& request, const DescribeConfigNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeConfigName(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribeConfigNameOutcomeCallable AfsClient::describeConfigNameCallable(const DescribeConfigNameRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeConfigNameOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeConfigName(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaDayOutcome AfsClient::describeCaptchaDay(const DescribeCaptchaDayRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeCaptchaDayOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeCaptchaDayOutcome(DescribeCaptchaDayResult(outcome.result()));
|
||||
else
|
||||
return DescribeCaptchaDayOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describeCaptchaDayAsync(const DescribeCaptchaDayRequest& request, const DescribeCaptchaDayAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeCaptchaDay(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribeCaptchaDayOutcomeCallable AfsClient::describeCaptchaDayCallable(const DescribeCaptchaDayRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeCaptchaDayOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeCaptchaDay(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::UpdateConfigNameOutcome AfsClient::updateConfigName(const UpdateConfigNameRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return UpdateConfigNameOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return UpdateConfigNameOutcome(UpdateConfigNameResult(outcome.result()));
|
||||
else
|
||||
return UpdateConfigNameOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::updateConfigNameAsync(const UpdateConfigNameRequest& request, const UpdateConfigNameAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, updateConfigName(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::UpdateConfigNameOutcomeCallable AfsClient::updateConfigNameCallable(const UpdateConfigNameRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<UpdateConfigNameOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->updateConfigName(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
AfsClient::DescribePersonMachineListOutcome AfsClient::describePersonMachineList(const DescribePersonMachineListRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribePersonMachineListOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribePersonMachineListOutcome(DescribePersonMachineListResult(outcome.result()));
|
||||
else
|
||||
return DescribePersonMachineListOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void AfsClient::describePersonMachineListAsync(const DescribePersonMachineListRequest& request, const DescribePersonMachineListAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describePersonMachineList(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
AfsClient::DescribePersonMachineListOutcomeCallable AfsClient::describePersonMachineListCallable(const DescribePersonMachineListRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribePersonMachineListOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describePersonMachineList(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ AnalyzeNvcRequest::AnalyzeNvcRequest() :
|
||||
AnalyzeNvcRequest::~AnalyzeNvcRequest()
|
||||
{}
|
||||
|
||||
long AnalyzeNvcRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void AnalyzeNvcRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AnalyzeNvcRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
|
||||
@@ -40,13 +40,13 @@ void AnalyzeNvcResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string AnalyzeNvcResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
std::string AnalyzeNvcResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
|
||||
@@ -36,17 +36,6 @@ void AuthenticateSigRequest::setSig(const std::string& sig)
|
||||
setParameter("Sig", sig);
|
||||
}
|
||||
|
||||
long AuthenticateSigRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void AuthenticateSigRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AuthenticateSigRequest::getRemoteIp()const
|
||||
{
|
||||
return remoteIp_;
|
||||
|
||||
@@ -40,34 +40,34 @@ void AuthenticateSigResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["Code"].isNull())
|
||||
code_ = std::stoi(value["Code"].asString());
|
||||
if(!value["Msg"].isNull())
|
||||
msg_ = value["Msg"].asString();
|
||||
if(!value["RiskLevel"].isNull())
|
||||
riskLevel_ = value["RiskLevel"].asString();
|
||||
if(!value["Detail"].isNull())
|
||||
detail_ = value["Detail"].asString();
|
||||
if(!value["Code"].isNull())
|
||||
code_ = std::stoi(value["Code"].asString());
|
||||
if(!value["Msg"].isNull())
|
||||
msg_ = value["Msg"].asString();
|
||||
if(!value["RiskLevel"].isNull())
|
||||
riskLevel_ = value["RiskLevel"].asString();
|
||||
if(!value["Detail"].isNull())
|
||||
detail_ = value["Detail"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string AuthenticateSigResult::getMsg()const
|
||||
{
|
||||
return msg_;
|
||||
}
|
||||
|
||||
int AuthenticateSigResult::getCode()const
|
||||
{
|
||||
return code_;
|
||||
}
|
||||
|
||||
std::string AuthenticateSigResult::getRiskLevel()const
|
||||
{
|
||||
return riskLevel_;
|
||||
}
|
||||
|
||||
std::string AuthenticateSigResult::getDetail()const
|
||||
{
|
||||
return detail_;
|
||||
}
|
||||
|
||||
std::string AuthenticateSigResult::getMsg()const
|
||||
{
|
||||
return msg_;
|
||||
}
|
||||
|
||||
int AuthenticateSigResult::getCode()const
|
||||
{
|
||||
return code_;
|
||||
}
|
||||
|
||||
std::string AuthenticateSigResult::getRiskLevel()const
|
||||
{
|
||||
return riskLevel_;
|
||||
}
|
||||
|
||||
std::string AuthenticateSigResult::getDetail()const
|
||||
{
|
||||
return detail_;
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ ConfigurationStyleRequest::ConfigurationStyleRequest() :
|
||||
ConfigurationStyleRequest::~ConfigurationStyleRequest()
|
||||
{}
|
||||
|
||||
long ConfigurationStyleRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void ConfigurationStyleRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ConfigurationStyleRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
@@ -58,6 +47,17 @@ void ConfigurationStyleRequest::setConfigurationMethod(const std::string& config
|
||||
setParameter("ConfigurationMethod", configurationMethod);
|
||||
}
|
||||
|
||||
std::string ConfigurationStyleRequest::getRefExtId()const
|
||||
{
|
||||
return refExtId_;
|
||||
}
|
||||
|
||||
void ConfigurationStyleRequest::setRefExtId(const std::string& refExtId)
|
||||
{
|
||||
refExtId_ = refExtId;
|
||||
setParameter("RefExtId", refExtId);
|
||||
}
|
||||
|
||||
std::string ConfigurationStyleRequest::getApplyType()const
|
||||
{
|
||||
return applyType_;
|
||||
|
||||
@@ -40,36 +40,41 @@ void ConfigurationStyleResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allCodeData = value["CodeData"];
|
||||
for (auto value : allCodeData)
|
||||
{
|
||||
CodeData codeDataObject;
|
||||
if(!value["Html"].isNull())
|
||||
codeDataObject.html = value["Html"].asString();
|
||||
if(!value["Net"].isNull())
|
||||
codeDataObject.net = value["Net"].asString();
|
||||
if(!value["Php"].isNull())
|
||||
codeDataObject.php = value["Php"].asString();
|
||||
if(!value["Python"].isNull())
|
||||
codeDataObject.python = value["Python"].asString();
|
||||
if(!value["Java"].isNull())
|
||||
codeDataObject.java = value["Java"].asString();
|
||||
if(!value["NodeJs"].isNull())
|
||||
codeDataObject.nodeJs = value["NodeJs"].asString();
|
||||
codeData_.push_back(codeDataObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
auto codeDataNode = value["CodeData"];
|
||||
if(!codeDataNode["Html"].isNull())
|
||||
codeData_.html = codeDataNode["Html"].asString();
|
||||
if(!codeDataNode["Net"].isNull())
|
||||
codeData_.net = codeDataNode["Net"].asString();
|
||||
if(!codeDataNode["Php"].isNull())
|
||||
codeData_.php = codeDataNode["Php"].asString();
|
||||
if(!codeDataNode["Python"].isNull())
|
||||
codeData_.python = codeDataNode["Python"].asString();
|
||||
if(!codeDataNode["Java"].isNull())
|
||||
codeData_.java = codeDataNode["Java"].asString();
|
||||
if(!codeDataNode["NodeJs"].isNull())
|
||||
codeData_.nodeJs = codeDataNode["NodeJs"].asString();
|
||||
if(!codeDataNode["NetUrl"].isNull())
|
||||
codeData_.netUrl = codeDataNode["NetUrl"].asString();
|
||||
if(!codeDataNode["PhpUrl"].isNull())
|
||||
codeData_.phpUrl = codeDataNode["PhpUrl"].asString();
|
||||
if(!codeDataNode["PythonUrl"].isNull())
|
||||
codeData_.pythonUrl = codeDataNode["PythonUrl"].asString();
|
||||
if(!codeDataNode["JavaUrl"].isNull())
|
||||
codeData_.javaUrl = codeDataNode["JavaUrl"].asString();
|
||||
if(!codeDataNode["NodeJsUrl"].isNull())
|
||||
codeData_.nodeJsUrl = codeDataNode["NodeJsUrl"].asString();
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::vector<ConfigurationStyleResult::CodeData> ConfigurationStyleResult::getCodeData()const
|
||||
{
|
||||
return codeData_;
|
||||
}
|
||||
|
||||
std::string ConfigurationStyleResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
ConfigurationStyleResult::CodeData ConfigurationStyleResult::getCodeData()const
|
||||
{
|
||||
return codeData_;
|
||||
}
|
||||
|
||||
std::string ConfigurationStyleResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ CreateConfigurationRequest::CreateConfigurationRequest() :
|
||||
CreateConfigurationRequest::~CreateConfigurationRequest()
|
||||
{}
|
||||
|
||||
long CreateConfigurationRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void CreateConfigurationRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateConfigurationRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
|
||||
@@ -40,13 +40,20 @@ void CreateConfigurationResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["RefExtId"].isNull())
|
||||
refExtId_ = value["RefExtId"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string CreateConfigurationResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
std::string CreateConfigurationResult::getRefExtId()const
|
||||
{
|
||||
return refExtId_;
|
||||
}
|
||||
|
||||
std::string CreateConfigurationResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ DescribeCaptchaDayRequest::DescribeCaptchaDayRequest() :
|
||||
DescribeCaptchaDayRequest::~DescribeCaptchaDayRequest()
|
||||
{}
|
||||
|
||||
long DescribeCaptchaDayRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaDayRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaDayRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
@@ -58,6 +47,17 @@ void DescribeCaptchaDayRequest::setConfigName(const std::string& configName)
|
||||
setParameter("ConfigName", configName);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaDayRequest::getRefExtId()const
|
||||
{
|
||||
return refExtId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaDayRequest::setRefExtId(const std::string& refExtId)
|
||||
{
|
||||
refExtId_ = refExtId;
|
||||
setParameter("RefExtId", refExtId);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaDayRequest::getTime()const
|
||||
{
|
||||
return time_;
|
||||
|
||||
@@ -40,49 +40,44 @@ void DescribeCaptchaDayResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allCaptchaDay = value["CaptchaDay"];
|
||||
for (auto value : allCaptchaDay)
|
||||
{
|
||||
CaptchaDay captchaDayObject;
|
||||
if(!value["Init"].isNull())
|
||||
captchaDayObject.init = std::stoi(value["Init"].asString());
|
||||
if(!value["AskForVerify"].isNull())
|
||||
captchaDayObject.askForVerify = std::stoi(value["AskForVerify"].asString());
|
||||
if(!value["DirecetStrategyInterception"].isNull())
|
||||
captchaDayObject.direcetStrategyInterception = std::stoi(value["DirecetStrategyInterception"].asString());
|
||||
if(!value["TwiceVerify"].isNull())
|
||||
captchaDayObject.twiceVerify = std::stoi(value["TwiceVerify"].asString());
|
||||
if(!value["Pass"].isNull())
|
||||
captchaDayObject.pass = std::stoi(value["Pass"].asString());
|
||||
if(!value["CheckTested"].isNull())
|
||||
captchaDayObject.checkTested = std::stoi(value["CheckTested"].asString());
|
||||
if(!value["UncheckTested"].isNull())
|
||||
captchaDayObject.uncheckTested = std::stoi(value["UncheckTested"].asString());
|
||||
if(!value["LegalSign"].isNull())
|
||||
captchaDayObject.legalSign = std::stoi(value["LegalSign"].asString());
|
||||
if(!value["MaliciousFlow"].isNull())
|
||||
captchaDayObject.maliciousFlow = std::stoi(value["MaliciousFlow"].asString());
|
||||
captchaDay_.push_back(captchaDayObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["HasData"].isNull())
|
||||
hasData_ = value["HasData"].asString() == "true";
|
||||
auto captchaDayNode = value["CaptchaDay"];
|
||||
if(!captchaDayNode["Init"].isNull())
|
||||
captchaDay_.init = std::stoi(captchaDayNode["Init"].asString());
|
||||
if(!captchaDayNode["AskForVerify"].isNull())
|
||||
captchaDay_.askForVerify = std::stoi(captchaDayNode["AskForVerify"].asString());
|
||||
if(!captchaDayNode["DirecetStrategyInterception"].isNull())
|
||||
captchaDay_.direcetStrategyInterception = std::stoi(captchaDayNode["DirecetStrategyInterception"].asString());
|
||||
if(!captchaDayNode["TwiceVerify"].isNull())
|
||||
captchaDay_.twiceVerify = std::stoi(captchaDayNode["TwiceVerify"].asString());
|
||||
if(!captchaDayNode["Pass"].isNull())
|
||||
captchaDay_.pass = std::stoi(captchaDayNode["Pass"].asString());
|
||||
if(!captchaDayNode["CheckTested"].isNull())
|
||||
captchaDay_.checkTested = std::stoi(captchaDayNode["CheckTested"].asString());
|
||||
if(!captchaDayNode["UncheckTested"].isNull())
|
||||
captchaDay_.uncheckTested = std::stoi(captchaDayNode["UncheckTested"].asString());
|
||||
if(!captchaDayNode["LegalSign"].isNull())
|
||||
captchaDay_.legalSign = std::stoi(captchaDayNode["LegalSign"].asString());
|
||||
if(!captchaDayNode["MaliciousFlow"].isNull())
|
||||
captchaDay_.maliciousFlow = std::stoi(captchaDayNode["MaliciousFlow"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["HasData"].isNull())
|
||||
hasData_ = value["HasData"].asString() == "true";
|
||||
|
||||
}
|
||||
|
||||
std::vector<DescribeCaptchaDayResult::CaptchaDay> DescribeCaptchaDayResult::getCaptchaDay()const
|
||||
{
|
||||
return captchaDay_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaDayResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
bool DescribeCaptchaDayResult::getHasData()const
|
||||
{
|
||||
return hasData_;
|
||||
}
|
||||
|
||||
DescribeCaptchaDayResult::CaptchaDay DescribeCaptchaDayResult::getCaptchaDay()const
|
||||
{
|
||||
return captchaDay_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaDayResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
bool DescribeCaptchaDayResult::getHasData()const
|
||||
{
|
||||
return hasData_;
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ DescribeCaptchaIpCityRequest::DescribeCaptchaIpCityRequest() :
|
||||
DescribeCaptchaIpCityRequest::~DescribeCaptchaIpCityRequest()
|
||||
{}
|
||||
|
||||
long DescribeCaptchaIpCityRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaIpCityRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaIpCityRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
@@ -58,6 +47,17 @@ void DescribeCaptchaIpCityRequest::setConfigName(const std::string& configName)
|
||||
setParameter("ConfigName", configName);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaIpCityRequest::getRefExtId()const
|
||||
{
|
||||
return refExtId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaIpCityRequest::setRefExtId(const std::string& refExtId)
|
||||
{
|
||||
refExtId_ = refExtId;
|
||||
setParameter("RefExtId", refExtId);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaIpCityRequest::getTime()const
|
||||
{
|
||||
return time_;
|
||||
|
||||
@@ -40,54 +40,54 @@ void DescribeCaptchaIpCityResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allCaptchaCities = value["CaptchaCities"]["CaptchaCitie"];
|
||||
for (auto value : allCaptchaCities)
|
||||
{
|
||||
CaptchaCitie captchaCitiesObject;
|
||||
if(!value["Location"].isNull())
|
||||
captchaCitiesObject.location = value["Location"].asString();
|
||||
if(!value["Lat"].isNull())
|
||||
captchaCitiesObject.lat = value["Lat"].asString();
|
||||
if(!value["Lng"].isNull())
|
||||
captchaCitiesObject.lng = value["Lng"].asString();
|
||||
if(!value["Pv"].isNull())
|
||||
captchaCitiesObject.pv = std::stoi(value["Pv"].asString());
|
||||
captchaCities_.push_back(captchaCitiesObject);
|
||||
}
|
||||
auto allCaptchaIps = value["CaptchaIps"]["CaptchaIp"];
|
||||
for (auto value : allCaptchaIps)
|
||||
{
|
||||
CaptchaIp captchaIpsObject;
|
||||
if(!value["Ip"].isNull())
|
||||
captchaIpsObject.ip = value["Ip"].asString();
|
||||
if(!value["Value"].isNull())
|
||||
captchaIpsObject.value = std::stoi(value["Value"].asString());
|
||||
captchaIps_.push_back(captchaIpsObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["HasData"].isNull())
|
||||
hasData_ = value["HasData"].asString() == "true";
|
||||
auto allCaptchaCities = value["CaptchaCities"]["CaptchaCitie"];
|
||||
for (auto value : allCaptchaCities)
|
||||
{
|
||||
CaptchaCitie captchaCitiesObject;
|
||||
if(!value["Location"].isNull())
|
||||
captchaCitiesObject.location = value["Location"].asString();
|
||||
if(!value["Lat"].isNull())
|
||||
captchaCitiesObject.lat = value["Lat"].asString();
|
||||
if(!value["Lng"].isNull())
|
||||
captchaCitiesObject.lng = value["Lng"].asString();
|
||||
if(!value["Pv"].isNull())
|
||||
captchaCitiesObject.pv = std::stoi(value["Pv"].asString());
|
||||
captchaCities_.push_back(captchaCitiesObject);
|
||||
}
|
||||
auto allCaptchaIps = value["CaptchaIps"]["CaptchaIp"];
|
||||
for (auto value : allCaptchaIps)
|
||||
{
|
||||
CaptchaIp captchaIpsObject;
|
||||
if(!value["Ip"].isNull())
|
||||
captchaIpsObject.ip = value["Ip"].asString();
|
||||
if(!value["Value"].isNull())
|
||||
captchaIpsObject.value = std::stoi(value["Value"].asString());
|
||||
captchaIps_.push_back(captchaIpsObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["HasData"].isNull())
|
||||
hasData_ = value["HasData"].asString() == "true";
|
||||
|
||||
}
|
||||
|
||||
std::vector<DescribeCaptchaIpCityResult::CaptchaIp> DescribeCaptchaIpCityResult::getCaptchaIps()const
|
||||
{
|
||||
return captchaIps_;
|
||||
}
|
||||
|
||||
std::vector<DescribeCaptchaIpCityResult::CaptchaCitie> DescribeCaptchaIpCityResult::getCaptchaCities()const
|
||||
{
|
||||
return captchaCities_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaIpCityResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
bool DescribeCaptchaIpCityResult::getHasData()const
|
||||
{
|
||||
return hasData_;
|
||||
}
|
||||
|
||||
std::vector<DescribeCaptchaIpCityResult::CaptchaIp> DescribeCaptchaIpCityResult::getCaptchaIps()const
|
||||
{
|
||||
return captchaIps_;
|
||||
}
|
||||
|
||||
std::vector<DescribeCaptchaIpCityResult::CaptchaCitie> DescribeCaptchaIpCityResult::getCaptchaCities()const
|
||||
{
|
||||
return captchaCities_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaIpCityResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
bool DescribeCaptchaIpCityResult::getHasData()const
|
||||
{
|
||||
return hasData_;
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ DescribeCaptchaMinRequest::DescribeCaptchaMinRequest() :
|
||||
DescribeCaptchaMinRequest::~DescribeCaptchaMinRequest()
|
||||
{}
|
||||
|
||||
long DescribeCaptchaMinRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaMinRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaMinRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
@@ -58,6 +47,17 @@ void DescribeCaptchaMinRequest::setConfigName(const std::string& configName)
|
||||
setParameter("ConfigName", configName);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaMinRequest::getRefExtId()const
|
||||
{
|
||||
return refExtId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaMinRequest::setRefExtId(const std::string& refExtId)
|
||||
{
|
||||
refExtId_ = refExtId;
|
||||
setParameter("RefExtId", refExtId);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaMinRequest::getTime()const
|
||||
{
|
||||
return time_;
|
||||
|
||||
@@ -40,37 +40,37 @@ void DescribeCaptchaMinResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allCaptchaMins = value["CaptchaMins"]["CaptchaMin"];
|
||||
for (auto value : allCaptchaMins)
|
||||
{
|
||||
CaptchaMin captchaMinsObject;
|
||||
if(!value["Time"].isNull())
|
||||
captchaMinsObject.time = value["Time"].asString();
|
||||
if(!value["Pass"].isNull())
|
||||
captchaMinsObject.pass = value["Pass"].asString();
|
||||
if(!value["Interception"].isNull())
|
||||
captchaMinsObject.interception = value["Interception"].asString();
|
||||
captchaMins_.push_back(captchaMinsObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["HasData"].isNull())
|
||||
hasData_ = value["HasData"].asString() == "true";
|
||||
auto allCaptchaMins = value["CaptchaMins"]["CaptchaMin"];
|
||||
for (auto value : allCaptchaMins)
|
||||
{
|
||||
CaptchaMin captchaMinsObject;
|
||||
if(!value["Time"].isNull())
|
||||
captchaMinsObject.time = value["Time"].asString();
|
||||
if(!value["Pass"].isNull())
|
||||
captchaMinsObject.pass = value["Pass"].asString();
|
||||
if(!value["Interception"].isNull())
|
||||
captchaMinsObject.interception = value["Interception"].asString();
|
||||
captchaMins_.push_back(captchaMinsObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["HasData"].isNull())
|
||||
hasData_ = value["HasData"].asString() == "true";
|
||||
|
||||
}
|
||||
|
||||
std::vector<DescribeCaptchaMinResult::CaptchaMin> DescribeCaptchaMinResult::getCaptchaMins()const
|
||||
{
|
||||
return captchaMins_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaMinResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
bool DescribeCaptchaMinResult::getHasData()const
|
||||
{
|
||||
return hasData_;
|
||||
}
|
||||
|
||||
std::vector<DescribeCaptchaMinResult::CaptchaMin> DescribeCaptchaMinResult::getCaptchaMins()const
|
||||
{
|
||||
return captchaMins_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaMinResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
bool DescribeCaptchaMinResult::getHasData()const
|
||||
{
|
||||
return hasData_;
|
||||
}
|
||||
|
||||
|
||||
49
afs/src/model/DescribeCaptchaOrderRequest.cc
Normal file
49
afs/src/model/DescribeCaptchaOrderRequest.cc
Normal file
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/afs/model/DescribeCaptchaOrderRequest.h>
|
||||
|
||||
using AlibabaCloud::Afs::Model::DescribeCaptchaOrderRequest;
|
||||
|
||||
DescribeCaptchaOrderRequest::DescribeCaptchaOrderRequest() :
|
||||
RpcServiceRequest("afs", "2018-01-12", "DescribeCaptchaOrder")
|
||||
{}
|
||||
|
||||
DescribeCaptchaOrderRequest::~DescribeCaptchaOrderRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeCaptchaOrderRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaOrderRequest::setSourceIp(const std::string& sourceIp)
|
||||
{
|
||||
sourceIp_ = sourceIp;
|
||||
setParameter("SourceIp", sourceIp);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaOrderRequest::getLang()const
|
||||
{
|
||||
return lang_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaOrderRequest::setLang(const std::string& lang)
|
||||
{
|
||||
lang_ = lang;
|
||||
setParameter("Lang", lang);
|
||||
}
|
||||
|
||||
52
afs/src/model/DescribeCaptchaOrderResult.cc
Normal file
52
afs/src/model/DescribeCaptchaOrderResult.cc
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/afs/model/DescribeCaptchaOrderResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Afs;
|
||||
using namespace AlibabaCloud::Afs::Model;
|
||||
|
||||
DescribeCaptchaOrderResult::DescribeCaptchaOrderResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DescribeCaptchaOrderResult::DescribeCaptchaOrderResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DescribeCaptchaOrderResult::~DescribeCaptchaOrderResult()
|
||||
{}
|
||||
|
||||
void DescribeCaptchaOrderResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaOrderResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
@@ -25,17 +25,6 @@ DescribeCaptchaRiskRequest::DescribeCaptchaRiskRequest() :
|
||||
DescribeCaptchaRiskRequest::~DescribeCaptchaRiskRequest()
|
||||
{}
|
||||
|
||||
long DescribeCaptchaRiskRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaRiskRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaRiskRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
@@ -58,6 +47,17 @@ void DescribeCaptchaRiskRequest::setConfigName(const std::string& configName)
|
||||
setParameter("ConfigName", configName);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaRiskRequest::getRefExtId()const
|
||||
{
|
||||
return refExtId_;
|
||||
}
|
||||
|
||||
void DescribeCaptchaRiskRequest::setRefExtId(const std::string& refExtId)
|
||||
{
|
||||
refExtId_ = refExtId;
|
||||
setParameter("RefExtId", refExtId);
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaRiskRequest::getTime()const
|
||||
{
|
||||
return time_;
|
||||
|
||||
@@ -40,34 +40,34 @@ void DescribeCaptchaRiskResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["NumOfThisMonth"].isNull())
|
||||
numOfThisMonth_ = std::stoi(value["NumOfThisMonth"].asString());
|
||||
if(!value["NumOfLastMonth"].isNull())
|
||||
numOfLastMonth_ = std::stoi(value["NumOfLastMonth"].asString());
|
||||
if(!value["RiskLevel"].isNull())
|
||||
riskLevel_ = value["RiskLevel"].asString();
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["NumOfThisMonth"].isNull())
|
||||
numOfThisMonth_ = std::stoi(value["NumOfThisMonth"].asString());
|
||||
if(!value["NumOfLastMonth"].isNull())
|
||||
numOfLastMonth_ = std::stoi(value["NumOfLastMonth"].asString());
|
||||
if(!value["RiskLevel"].isNull())
|
||||
riskLevel_ = value["RiskLevel"].asString();
|
||||
|
||||
}
|
||||
|
||||
int DescribeCaptchaRiskResult::getNumOfLastMonth()const
|
||||
{
|
||||
return numOfLastMonth_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaRiskResult::getRiskLevel()const
|
||||
{
|
||||
return riskLevel_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaRiskResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
int DescribeCaptchaRiskResult::getNumOfThisMonth()const
|
||||
{
|
||||
return numOfThisMonth_;
|
||||
}
|
||||
|
||||
int DescribeCaptchaRiskResult::getNumOfLastMonth()const
|
||||
{
|
||||
return numOfLastMonth_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaRiskResult::getRiskLevel()const
|
||||
{
|
||||
return riskLevel_;
|
||||
}
|
||||
|
||||
std::string DescribeCaptchaRiskResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
int DescribeCaptchaRiskResult::getNumOfThisMonth()const
|
||||
{
|
||||
return numOfThisMonth_;
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ DescribeConfigNameRequest::DescribeConfigNameRequest() :
|
||||
DescribeConfigNameRequest::~DescribeConfigNameRequest()
|
||||
{}
|
||||
|
||||
long DescribeConfigNameRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void DescribeConfigNameRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeConfigNameRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
|
||||
@@ -40,27 +40,37 @@ void DescribeConfigNameResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["HasConfig"].isNull())
|
||||
hasConfig_ = value["HasConfig"].asString() == "true";
|
||||
if(!value["ConfigNames"].isNull())
|
||||
configNames_ = value["ConfigNames"].asString();
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
auto allConfigNames = value["ConfigNames"]["ConfigName"];
|
||||
for (auto value : allConfigNames)
|
||||
{
|
||||
ConfigName configNamesObject;
|
||||
if(!value["AliUid"].isNull())
|
||||
configNamesObject.aliUid = value["AliUid"].asString();
|
||||
if(!value["ConfigName"].isNull())
|
||||
configNamesObject.configName = value["ConfigName"].asString();
|
||||
if(!value["RefExtId"].isNull())
|
||||
configNamesObject.refExtId = value["RefExtId"].asString();
|
||||
configNames_.push_back(configNamesObject);
|
||||
}
|
||||
if(!value["HasConfig"].isNull())
|
||||
hasConfig_ = value["HasConfig"].asString() == "true";
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string DescribeConfigNameResult::getConfigNames()const
|
||||
{
|
||||
return configNames_;
|
||||
}
|
||||
|
||||
bool DescribeConfigNameResult::getHasConfig()const
|
||||
{
|
||||
return hasConfig_;
|
||||
}
|
||||
|
||||
std::string DescribeConfigNameResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
std::vector<DescribeConfigNameResult::ConfigName> DescribeConfigNameResult::getConfigNames()const
|
||||
{
|
||||
return configNames_;
|
||||
}
|
||||
|
||||
bool DescribeConfigNameResult::getHasConfig()const
|
||||
{
|
||||
return hasConfig_;
|
||||
}
|
||||
|
||||
std::string DescribeConfigNameResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
|
||||
@@ -25,17 +25,6 @@ DescribeEarlyWarningRequest::DescribeEarlyWarningRequest() :
|
||||
DescribeEarlyWarningRequest::~DescribeEarlyWarningRequest()
|
||||
{}
|
||||
|
||||
long DescribeEarlyWarningRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void DescribeEarlyWarningRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeEarlyWarningRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
|
||||
@@ -40,47 +40,47 @@ void DescribeEarlyWarningResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allEarlyWarnings = value["EarlyWarnings"]["EarlyWarning"];
|
||||
for (auto value : allEarlyWarnings)
|
||||
{
|
||||
EarlyWarning earlyWarningsObject;
|
||||
if(!value["WarnOpen"].isNull())
|
||||
earlyWarningsObject.warnOpen = value["WarnOpen"].asString() == "true";
|
||||
if(!value["Title"].isNull())
|
||||
earlyWarningsObject.title = value["Title"].asString();
|
||||
if(!value["Content"].isNull())
|
||||
earlyWarningsObject.content = value["Content"].asString();
|
||||
if(!value["Frequency"].isNull())
|
||||
earlyWarningsObject.frequency = value["Frequency"].asString();
|
||||
if(!value["TimeOpen"].isNull())
|
||||
earlyWarningsObject.timeOpen = value["TimeOpen"].asString() == "true";
|
||||
if(!value["TimeBegin"].isNull())
|
||||
earlyWarningsObject.timeBegin = value["TimeBegin"].asString();
|
||||
if(!value["TimeEnd"].isNull())
|
||||
earlyWarningsObject.timeEnd = value["TimeEnd"].asString();
|
||||
if(!value["Channel"].isNull())
|
||||
earlyWarningsObject.channel = value["Channel"].asString();
|
||||
earlyWarnings_.push_back(earlyWarningsObject);
|
||||
}
|
||||
if(!value["HasWarning"].isNull())
|
||||
hasWarning_ = value["HasWarning"].asString() == "true";
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
auto allEarlyWarnings = value["EarlyWarnings"]["EarlyWarning"];
|
||||
for (auto value : allEarlyWarnings)
|
||||
{
|
||||
EarlyWarning earlyWarningsObject;
|
||||
if(!value["WarnOpen"].isNull())
|
||||
earlyWarningsObject.warnOpen = value["WarnOpen"].asString() == "true";
|
||||
if(!value["Title"].isNull())
|
||||
earlyWarningsObject.title = value["Title"].asString();
|
||||
if(!value["Content"].isNull())
|
||||
earlyWarningsObject.content = value["Content"].asString();
|
||||
if(!value["Frequency"].isNull())
|
||||
earlyWarningsObject.frequency = value["Frequency"].asString();
|
||||
if(!value["TimeOpen"].isNull())
|
||||
earlyWarningsObject.timeOpen = value["TimeOpen"].asString() == "true";
|
||||
if(!value["TimeBegin"].isNull())
|
||||
earlyWarningsObject.timeBegin = value["TimeBegin"].asString();
|
||||
if(!value["TimeEnd"].isNull())
|
||||
earlyWarningsObject.timeEnd = value["TimeEnd"].asString();
|
||||
if(!value["Channel"].isNull())
|
||||
earlyWarningsObject.channel = value["Channel"].asString();
|
||||
earlyWarnings_.push_back(earlyWarningsObject);
|
||||
}
|
||||
if(!value["HasWarning"].isNull())
|
||||
hasWarning_ = value["HasWarning"].asString() == "true";
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
bool DescribeEarlyWarningResult::getHasWarning()const
|
||||
{
|
||||
return hasWarning_;
|
||||
}
|
||||
|
||||
std::vector<DescribeEarlyWarningResult::EarlyWarning> DescribeEarlyWarningResult::getEarlyWarnings()const
|
||||
{
|
||||
return earlyWarnings_;
|
||||
}
|
||||
|
||||
std::string DescribeEarlyWarningResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
bool DescribeEarlyWarningResult::getHasWarning()const
|
||||
{
|
||||
return hasWarning_;
|
||||
}
|
||||
|
||||
std::vector<DescribeEarlyWarningResult::EarlyWarning> DescribeEarlyWarningResult::getEarlyWarnings()const
|
||||
{
|
||||
return earlyWarnings_;
|
||||
}
|
||||
|
||||
std::string DescribeEarlyWarningResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
|
||||
38
afs/src/model/DescribeOrderInfoRequest.cc
Normal file
38
afs/src/model/DescribeOrderInfoRequest.cc
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/afs/model/DescribeOrderInfoRequest.h>
|
||||
|
||||
using AlibabaCloud::Afs::Model::DescribeOrderInfoRequest;
|
||||
|
||||
DescribeOrderInfoRequest::DescribeOrderInfoRequest() :
|
||||
RpcServiceRequest("afs", "2018-01-12", "DescribeOrderInfo")
|
||||
{}
|
||||
|
||||
DescribeOrderInfoRequest::~DescribeOrderInfoRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeOrderInfoRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
}
|
||||
|
||||
void DescribeOrderInfoRequest::setSourceIp(const std::string& sourceIp)
|
||||
{
|
||||
sourceIp_ = sourceIp;
|
||||
setParameter("SourceIp", sourceIp);
|
||||
}
|
||||
|
||||
80
afs/src/model/DescribeOrderInfoResult.cc
Normal file
80
afs/src/model/DescribeOrderInfoResult.cc
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/afs/model/DescribeOrderInfoResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Afs;
|
||||
using namespace AlibabaCloud::Afs::Model;
|
||||
|
||||
DescribeOrderInfoResult::DescribeOrderInfoResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DescribeOrderInfoResult::DescribeOrderInfoResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DescribeOrderInfoResult::~DescribeOrderInfoResult()
|
||||
{}
|
||||
|
||||
void DescribeOrderInfoResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["OrderLevel"].isNull())
|
||||
orderLevel_ = value["OrderLevel"].asString();
|
||||
if(!value["Num"].isNull())
|
||||
num_ = value["Num"].asString();
|
||||
if(!value["BeginDate"].isNull())
|
||||
beginDate_ = value["BeginDate"].asString();
|
||||
if(!value["EndDate"].isNull())
|
||||
endDate_ = value["EndDate"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string DescribeOrderInfoResult::getOrderLevel()const
|
||||
{
|
||||
return orderLevel_;
|
||||
}
|
||||
|
||||
std::string DescribeOrderInfoResult::getNum()const
|
||||
{
|
||||
return num_;
|
||||
}
|
||||
|
||||
std::string DescribeOrderInfoResult::getEndDate()const
|
||||
{
|
||||
return endDate_;
|
||||
}
|
||||
|
||||
std::string DescribeOrderInfoResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
std::string DescribeOrderInfoResult::getBeginDate()const
|
||||
{
|
||||
return beginDate_;
|
||||
}
|
||||
|
||||
@@ -25,17 +25,6 @@ DescribePersonMachineListRequest::DescribePersonMachineListRequest() :
|
||||
DescribePersonMachineListRequest::~DescribePersonMachineListRequest()
|
||||
{}
|
||||
|
||||
long DescribePersonMachineListRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void DescribePersonMachineListRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribePersonMachineListRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
|
||||
@@ -40,44 +40,43 @@ void DescribePersonMachineListResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allPersonMachineRes = value["PersonMachineRes"];
|
||||
for (auto value : allPersonMachineRes)
|
||||
{
|
||||
PersonMachineRes personMachineResObject;
|
||||
if(!value["HasConfiguration"].isNull())
|
||||
personMachineResObject.hasConfiguration = value["HasConfiguration"].asString();
|
||||
auto allPersonMachines = value["PersonMachines"]["PersonMachine"];
|
||||
for (auto value : allPersonMachines)
|
||||
{
|
||||
PersonMachineRes::PersonMachine personMachineObject;
|
||||
if(!value["ConfigurationName"].isNull())
|
||||
personMachineObject.configurationName = value["ConfigurationName"].asString();
|
||||
if(!value["Appkey"].isNull())
|
||||
personMachineObject.appkey = value["Appkey"].asString();
|
||||
if(!value["ConfigurationMethod"].isNull())
|
||||
personMachineObject.configurationMethod = value["ConfigurationMethod"].asString();
|
||||
if(!value["ApplyType"].isNull())
|
||||
personMachineObject.applyType = value["ApplyType"].asString();
|
||||
if(!value["Scene"].isNull())
|
||||
personMachineObject.scene = value["Scene"].asString();
|
||||
if(!value["LastUpdate"].isNull())
|
||||
personMachineObject.lastUpdate = value["LastUpdate"].asString();
|
||||
personMachineResObject.personMachines.push_back(personMachineObject);
|
||||
}
|
||||
personMachineRes_.push_back(personMachineResObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
auto personMachineResNode = value["PersonMachineRes"];
|
||||
if(!personMachineResNode["HasConfiguration"].isNull())
|
||||
personMachineRes_.hasConfiguration = personMachineResNode["HasConfiguration"].asString();
|
||||
auto allPersonMachines = value["PersonMachines"]["PersonMachine"];
|
||||
for (auto value : allPersonMachines)
|
||||
{
|
||||
PersonMachineRes::PersonMachine personMachineObject;
|
||||
if(!value["ConfigurationName"].isNull())
|
||||
personMachineObject.configurationName = value["ConfigurationName"].asString();
|
||||
if(!value["Appkey"].isNull())
|
||||
personMachineObject.appkey = value["Appkey"].asString();
|
||||
if(!value["ConfigurationMethod"].isNull())
|
||||
personMachineObject.configurationMethod = value["ConfigurationMethod"].asString();
|
||||
if(!value["ApplyType"].isNull())
|
||||
personMachineObject.applyType = value["ApplyType"].asString();
|
||||
if(!value["Scene"].isNull())
|
||||
personMachineObject.scene = value["Scene"].asString();
|
||||
if(!value["LastUpdate"].isNull())
|
||||
personMachineObject.lastUpdate = value["LastUpdate"].asString();
|
||||
if(!value["ExtId"].isNull())
|
||||
personMachineObject.extId = value["ExtId"].asString();
|
||||
if(!value["SceneOriginal"].isNull())
|
||||
personMachineObject.sceneOriginal = value["SceneOriginal"].asString();
|
||||
personMachineRes_.personMachines.push_back(personMachineObject);
|
||||
}
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::vector<DescribePersonMachineListResult::PersonMachineRes> DescribePersonMachineListResult::getPersonMachineRes()const
|
||||
{
|
||||
return personMachineRes_;
|
||||
}
|
||||
|
||||
std::string DescribePersonMachineListResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
DescribePersonMachineListResult::PersonMachineRes DescribePersonMachineListResult::getPersonMachineRes()const
|
||||
{
|
||||
return personMachineRes_;
|
||||
}
|
||||
|
||||
std::string DescribePersonMachineListResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
|
||||
@@ -36,17 +36,6 @@ void SetEarlyWarningRequest::setTimeEnd(const std::string& timeEnd)
|
||||
setParameter("TimeEnd", timeEnd);
|
||||
}
|
||||
|
||||
long SetEarlyWarningRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
}
|
||||
|
||||
void SetEarlyWarningRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
bool SetEarlyWarningRequest::getWarnOpen()const
|
||||
{
|
||||
return warnOpen_;
|
||||
|
||||
@@ -40,13 +40,13 @@ void SetEarlyWarningResult::parse(const std::string &payload)
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string SetEarlyWarningResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
std::string SetEarlyWarningResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
|
||||
71
afs/src/model/UpdateConfigNameRequest.cc
Normal file
71
afs/src/model/UpdateConfigNameRequest.cc
Normal file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/afs/model/UpdateConfigNameRequest.h>
|
||||
|
||||
using AlibabaCloud::Afs::Model::UpdateConfigNameRequest;
|
||||
|
||||
UpdateConfigNameRequest::UpdateConfigNameRequest() :
|
||||
RpcServiceRequest("afs", "2018-01-12", "UpdateConfigName")
|
||||
{}
|
||||
|
||||
UpdateConfigNameRequest::~UpdateConfigNameRequest()
|
||||
{}
|
||||
|
||||
std::string UpdateConfigNameRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
}
|
||||
|
||||
void UpdateConfigNameRequest::setSourceIp(const std::string& sourceIp)
|
||||
{
|
||||
sourceIp_ = sourceIp;
|
||||
setParameter("SourceIp", sourceIp);
|
||||
}
|
||||
|
||||
std::string UpdateConfigNameRequest::getConfigName()const
|
||||
{
|
||||
return configName_;
|
||||
}
|
||||
|
||||
void UpdateConfigNameRequest::setConfigName(const std::string& configName)
|
||||
{
|
||||
configName_ = configName;
|
||||
setParameter("ConfigName", configName);
|
||||
}
|
||||
|
||||
std::string UpdateConfigNameRequest::getRefExtId()const
|
||||
{
|
||||
return refExtId_;
|
||||
}
|
||||
|
||||
void UpdateConfigNameRequest::setRefExtId(const std::string& refExtId)
|
||||
{
|
||||
refExtId_ = refExtId;
|
||||
setParameter("RefExtId", refExtId);
|
||||
}
|
||||
|
||||
std::string UpdateConfigNameRequest::getLang()const
|
||||
{
|
||||
return lang_;
|
||||
}
|
||||
|
||||
void UpdateConfigNameRequest::setLang(const std::string& lang)
|
||||
{
|
||||
lang_ = lang;
|
||||
setParameter("Lang", lang);
|
||||
}
|
||||
|
||||
52
afs/src/model/UpdateConfigNameResult.cc
Normal file
52
afs/src/model/UpdateConfigNameResult.cc
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/afs/model/UpdateConfigNameResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Afs;
|
||||
using namespace AlibabaCloud::Afs::Model;
|
||||
|
||||
UpdateConfigNameResult::UpdateConfigNameResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
UpdateConfigNameResult::UpdateConfigNameResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
UpdateConfigNameResult::~UpdateConfigNameResult()
|
||||
{}
|
||||
|
||||
void UpdateConfigNameResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["BizCode"].isNull())
|
||||
bizCode_ = value["BizCode"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string UpdateConfigNameResult::getBizCode()const
|
||||
{
|
||||
return bizCode_;
|
||||
}
|
||||
|
||||
12
ccs/CMakeLists.txt
Executable file → Normal file
12
ccs/CMakeLists.txt
Executable file → Normal file
@@ -21,15 +21,27 @@ set(ccs_public_header
|
||||
include/alibabacloud/ccs/CcsExport.h )
|
||||
|
||||
set(ccs_public_header_model
|
||||
include/alibabacloud/ccs/model/CreateTicketRequest.h
|
||||
include/alibabacloud/ccs/model/CreateTicketResult.h
|
||||
include/alibabacloud/ccs/model/QueryTicketRequest.h
|
||||
include/alibabacloud/ccs/model/QueryTicketResult.h
|
||||
include/alibabacloud/ccs/model/GetHotlineRecordRequest.h
|
||||
include/alibabacloud/ccs/model/GetHotlineRecordResult.h
|
||||
include/alibabacloud/ccs/model/ProceedTicketRequest.h
|
||||
include/alibabacloud/ccs/model/ProceedTicketResult.h
|
||||
include/alibabacloud/ccs/model/QueryHotlineRecordRequest.h
|
||||
include/alibabacloud/ccs/model/QueryHotlineRecordResult.h )
|
||||
|
||||
set(ccs_src
|
||||
src/CcsClient.cc
|
||||
src/model/CreateTicketRequest.cc
|
||||
src/model/CreateTicketResult.cc
|
||||
src/model/QueryTicketRequest.cc
|
||||
src/model/QueryTicketResult.cc
|
||||
src/model/GetHotlineRecordRequest.cc
|
||||
src/model/GetHotlineRecordResult.cc
|
||||
src/model/ProceedTicketRequest.cc
|
||||
src/model/ProceedTicketResult.cc
|
||||
src/model/QueryHotlineRecordRequest.cc
|
||||
src/model/QueryHotlineRecordResult.cc )
|
||||
|
||||
|
||||
24
ccs/include/alibabacloud/ccs/CcsClient.h
Executable file → Normal file
24
ccs/include/alibabacloud/ccs/CcsClient.h
Executable file → Normal file
@@ -22,8 +22,14 @@
|
||||
#include <alibabacloud/core/EndpointProvider.h>
|
||||
#include <alibabacloud/core/RpcServiceClient.h>
|
||||
#include "CcsExport.h"
|
||||
#include "model/CreateTicketRequest.h"
|
||||
#include "model/CreateTicketResult.h"
|
||||
#include "model/QueryTicketRequest.h"
|
||||
#include "model/QueryTicketResult.h"
|
||||
#include "model/GetHotlineRecordRequest.h"
|
||||
#include "model/GetHotlineRecordResult.h"
|
||||
#include "model/ProceedTicketRequest.h"
|
||||
#include "model/ProceedTicketResult.h"
|
||||
#include "model/QueryHotlineRecordRequest.h"
|
||||
#include "model/QueryHotlineRecordResult.h"
|
||||
|
||||
@@ -35,9 +41,18 @@ namespace AlibabaCloud
|
||||
class ALIBABACLOUD_CCS_EXPORT CcsClient : public RpcServiceClient
|
||||
{
|
||||
public:
|
||||
typedef Outcome<Error, Model::CreateTicketResult> CreateTicketOutcome;
|
||||
typedef std::future<CreateTicketOutcome> CreateTicketOutcomeCallable;
|
||||
typedef std::function<void(const CcsClient*, const Model::CreateTicketRequest&, const CreateTicketOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> CreateTicketAsyncHandler;
|
||||
typedef Outcome<Error, Model::QueryTicketResult> QueryTicketOutcome;
|
||||
typedef std::future<QueryTicketOutcome> QueryTicketOutcomeCallable;
|
||||
typedef std::function<void(const CcsClient*, const Model::QueryTicketRequest&, const QueryTicketOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> QueryTicketAsyncHandler;
|
||||
typedef Outcome<Error, Model::GetHotlineRecordResult> GetHotlineRecordOutcome;
|
||||
typedef std::future<GetHotlineRecordOutcome> GetHotlineRecordOutcomeCallable;
|
||||
typedef std::function<void(const CcsClient*, const Model::GetHotlineRecordRequest&, const GetHotlineRecordOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> GetHotlineRecordAsyncHandler;
|
||||
typedef Outcome<Error, Model::ProceedTicketResult> ProceedTicketOutcome;
|
||||
typedef std::future<ProceedTicketOutcome> ProceedTicketOutcomeCallable;
|
||||
typedef std::function<void(const CcsClient*, const Model::ProceedTicketRequest&, const ProceedTicketOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> ProceedTicketAsyncHandler;
|
||||
typedef Outcome<Error, Model::QueryHotlineRecordResult> QueryHotlineRecordOutcome;
|
||||
typedef std::future<QueryHotlineRecordOutcome> QueryHotlineRecordOutcomeCallable;
|
||||
typedef std::function<void(const CcsClient*, const Model::QueryHotlineRecordRequest&, const QueryHotlineRecordOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> QueryHotlineRecordAsyncHandler;
|
||||
@@ -46,9 +61,18 @@ namespace AlibabaCloud
|
||||
CcsClient(const std::shared_ptr<CredentialsProvider> &credentialsProvider, const ClientConfiguration &configuration);
|
||||
CcsClient(const std::string &accessKeyId, const std::string &accessKeySecret, const ClientConfiguration &configuration);
|
||||
~CcsClient();
|
||||
CreateTicketOutcome createTicket(const Model::CreateTicketRequest &request)const;
|
||||
void createTicketAsync(const Model::CreateTicketRequest& request, const CreateTicketAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
CreateTicketOutcomeCallable createTicketCallable(const Model::CreateTicketRequest& request) const;
|
||||
QueryTicketOutcome queryTicket(const Model::QueryTicketRequest &request)const;
|
||||
void queryTicketAsync(const Model::QueryTicketRequest& request, const QueryTicketAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
QueryTicketOutcomeCallable queryTicketCallable(const Model::QueryTicketRequest& request) const;
|
||||
GetHotlineRecordOutcome getHotlineRecord(const Model::GetHotlineRecordRequest &request)const;
|
||||
void getHotlineRecordAsync(const Model::GetHotlineRecordRequest& request, const GetHotlineRecordAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
GetHotlineRecordOutcomeCallable getHotlineRecordCallable(const Model::GetHotlineRecordRequest& request) const;
|
||||
ProceedTicketOutcome proceedTicket(const Model::ProceedTicketRequest &request)const;
|
||||
void proceedTicketAsync(const Model::ProceedTicketRequest& request, const ProceedTicketAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
ProceedTicketOutcomeCallable proceedTicketCallable(const Model::ProceedTicketRequest& request) const;
|
||||
QueryHotlineRecordOutcome queryHotlineRecord(const Model::QueryHotlineRecordRequest &request)const;
|
||||
void queryHotlineRecordAsync(const Model::QueryHotlineRecordRequest& request, const QueryHotlineRecordAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
QueryHotlineRecordOutcomeCallable queryHotlineRecordCallable(const Model::QueryHotlineRecordRequest& request) const;
|
||||
|
||||
0
ccs/include/alibabacloud/ccs/CcsExport.h
Executable file → Normal file
0
ccs/include/alibabacloud/ccs/CcsExport.h
Executable file → Normal file
60
ccs/include/alibabacloud/ccs/model/CreateTicketRequest.h
Normal file
60
ccs/include/alibabacloud/ccs/model/CreateTicketRequest.h
Normal file
@@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_CCS_MODEL_CREATETICKETREQUEST_H_
|
||||
#define ALIBABACLOUD_CCS_MODEL_CREATETICKETREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/ccs/CcsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Ccs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CCS_EXPORT CreateTicketRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
CreateTicketRequest();
|
||||
~CreateTicketRequest();
|
||||
|
||||
std::string getCreatorId()const;
|
||||
void setCreatorId(const std::string& creatorId);
|
||||
std::string getDescription()const;
|
||||
void setDescription(const std::string& description);
|
||||
std::string getType()const;
|
||||
void setType(const std::string& type);
|
||||
std::string getCcsInstanceId()const;
|
||||
void setCcsInstanceId(const std::string& ccsInstanceId);
|
||||
std::string getCustomFields()const;
|
||||
void setCustomFields(const std::string& customFields);
|
||||
|
||||
private:
|
||||
std::string creatorId_;
|
||||
std::string description_;
|
||||
std::string type_;
|
||||
std::string ccsInstanceId_;
|
||||
std::string customFields_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CCS_MODEL_CREATETICKETREQUEST_H_
|
||||
51
ccs/include/alibabacloud/ccs/model/CreateTicketResult.h
Normal file
51
ccs/include/alibabacloud/ccs/model/CreateTicketResult.h
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_CCS_MODEL_CREATETICKETRESULT_H_
|
||||
#define ALIBABACLOUD_CCS_MODEL_CREATETICKETRESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/ccs/CcsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Ccs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CCS_EXPORT CreateTicketResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
CreateTicketResult();
|
||||
explicit CreateTicketResult(const std::string &payload);
|
||||
~CreateTicketResult();
|
||||
std::string getId()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string id_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CCS_MODEL_CREATETICKETRESULT_H_
|
||||
0
ccs/include/alibabacloud/ccs/model/GetHotlineRecordRequest.h
Executable file → Normal file
0
ccs/include/alibabacloud/ccs/model/GetHotlineRecordRequest.h
Executable file → Normal file
0
ccs/include/alibabacloud/ccs/model/GetHotlineRecordResult.h
Executable file → Normal file
0
ccs/include/alibabacloud/ccs/model/GetHotlineRecordResult.h
Executable file → Normal file
60
ccs/include/alibabacloud/ccs/model/ProceedTicketRequest.h
Normal file
60
ccs/include/alibabacloud/ccs/model/ProceedTicketRequest.h
Normal file
@@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_CCS_MODEL_PROCEEDTICKETREQUEST_H_
|
||||
#define ALIBABACLOUD_CCS_MODEL_PROCEEDTICKETREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/ccs/CcsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Ccs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CCS_EXPORT ProceedTicketRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
ProceedTicketRequest();
|
||||
~ProceedTicketRequest();
|
||||
|
||||
std::string getMemo()const;
|
||||
void setMemo(const std::string& memo);
|
||||
std::string getId()const;
|
||||
void setId(const std::string& id);
|
||||
std::string getCcsInstanceId()const;
|
||||
void setCcsInstanceId(const std::string& ccsInstanceId);
|
||||
std::string getOperation()const;
|
||||
void setOperation(const std::string& operation);
|
||||
std::string getOperatorId()const;
|
||||
void setOperatorId(const std::string& operatorId);
|
||||
|
||||
private:
|
||||
std::string memo_;
|
||||
std::string id_;
|
||||
std::string ccsInstanceId_;
|
||||
std::string operation_;
|
||||
std::string operatorId_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CCS_MODEL_PROCEEDTICKETREQUEST_H_
|
||||
49
ccs/include/alibabacloud/ccs/model/ProceedTicketResult.h
Normal file
49
ccs/include/alibabacloud/ccs/model/ProceedTicketResult.h
Normal file
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_CCS_MODEL_PROCEEDTICKETRESULT_H_
|
||||
#define ALIBABACLOUD_CCS_MODEL_PROCEEDTICKETRESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/ccs/CcsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Ccs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CCS_EXPORT ProceedTicketResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
ProceedTicketResult();
|
||||
explicit ProceedTicketResult(const std::string &payload);
|
||||
~ProceedTicketResult();
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CCS_MODEL_PROCEEDTICKETRESULT_H_
|
||||
0
ccs/include/alibabacloud/ccs/model/QueryHotlineRecordRequest.h
Executable file → Normal file
0
ccs/include/alibabacloud/ccs/model/QueryHotlineRecordRequest.h
Executable file → Normal file
4
ccs/include/alibabacloud/ccs/model/QueryHotlineRecordResult.h
Executable file → Normal file
4
ccs/include/alibabacloud/ccs/model/QueryHotlineRecordResult.h
Executable file → Normal file
@@ -59,7 +59,7 @@ namespace AlibabaCloud
|
||||
QueryHotlineRecordResult();
|
||||
explicit QueryHotlineRecordResult(const std::string &payload);
|
||||
~QueryHotlineRecordResult();
|
||||
int getTotalCount()const;
|
||||
long getTotalCount()const;
|
||||
int getPageNum()const;
|
||||
int getPageSize()const;
|
||||
std::vector<HotlineRecord> getRecords()const;
|
||||
@@ -67,7 +67,7 @@ namespace AlibabaCloud
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
int totalCount_;
|
||||
long totalCount_;
|
||||
int pageNum_;
|
||||
int pageSize_;
|
||||
std::vector<HotlineRecord> records_;
|
||||
|
||||
69
ccs/include/alibabacloud/ccs/model/QueryTicketRequest.h
Normal file
69
ccs/include/alibabacloud/ccs/model/QueryTicketRequest.h
Normal file
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_CCS_MODEL_QUERYTICKETREQUEST_H_
|
||||
#define ALIBABACLOUD_CCS_MODEL_QUERYTICKETREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/ccs/CcsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Ccs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CCS_EXPORT QueryTicketRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
QueryTicketRequest();
|
||||
~QueryTicketRequest();
|
||||
|
||||
std::string getStage()const;
|
||||
void setStage(const std::string& stage);
|
||||
int getPageSize()const;
|
||||
void setPageSize(int pageSize);
|
||||
std::string getCreatorId()const;
|
||||
void setCreatorId(const std::string& creatorId);
|
||||
std::string getEndTime()const;
|
||||
void setEndTime(const std::string& endTime);
|
||||
std::string getStartTime()const;
|
||||
void setStartTime(const std::string& startTime);
|
||||
int getPageNum()const;
|
||||
void setPageNum(int pageNum);
|
||||
std::string getType()const;
|
||||
void setType(const std::string& type);
|
||||
std::string getCcsInstanceId()const;
|
||||
void setCcsInstanceId(const std::string& ccsInstanceId);
|
||||
|
||||
private:
|
||||
std::string stage_;
|
||||
int pageSize_;
|
||||
std::string creatorId_;
|
||||
std::string endTime_;
|
||||
std::string startTime_;
|
||||
int pageNum_;
|
||||
std::string type_;
|
||||
std::string ccsInstanceId_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CCS_MODEL_QUERYTICKETREQUEST_H_
|
||||
67
ccs/include/alibabacloud/ccs/model/QueryTicketResult.h
Normal file
67
ccs/include/alibabacloud/ccs/model/QueryTicketResult.h
Normal file
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#ifndef ALIBABACLOUD_CCS_MODEL_QUERYTICKETRESULT_H_
|
||||
#define ALIBABACLOUD_CCS_MODEL_QUERYTICKETRESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/ccs/CcsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Ccs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_CCS_EXPORT QueryTicketResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct Ticket
|
||||
{
|
||||
std::string type;
|
||||
std::string customFields;
|
||||
std::string description;
|
||||
std::string creatorId;
|
||||
std::string createTime;
|
||||
std::string stage;
|
||||
std::string id;
|
||||
};
|
||||
|
||||
|
||||
QueryTicketResult();
|
||||
explicit QueryTicketResult(const std::string &payload);
|
||||
~QueryTicketResult();
|
||||
long getTotalCount()const;
|
||||
int getPageNum()const;
|
||||
int getPageSize()const;
|
||||
std::vector<Ticket> getTickets()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
long totalCount_;
|
||||
int pageNum_;
|
||||
int pageSize_;
|
||||
std::vector<Ticket> tickets_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_CCS_MODEL_QUERYTICKETRESULT_H_
|
||||
108
ccs/src/CcsClient.cc
Executable file → Normal file
108
ccs/src/CcsClient.cc
Executable file → Normal file
@@ -51,6 +51,78 @@ CcsClient::CcsClient(const std::string & accessKeyId, const std::string & access
|
||||
CcsClient::~CcsClient()
|
||||
{}
|
||||
|
||||
CcsClient::CreateTicketOutcome CcsClient::createTicket(const CreateTicketRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return CreateTicketOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return CreateTicketOutcome(CreateTicketResult(outcome.result()));
|
||||
else
|
||||
return CreateTicketOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void CcsClient::createTicketAsync(const CreateTicketRequest& request, const CreateTicketAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, createTicket(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
CcsClient::CreateTicketOutcomeCallable CcsClient::createTicketCallable(const CreateTicketRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<CreateTicketOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->createTicket(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
CcsClient::QueryTicketOutcome CcsClient::queryTicket(const QueryTicketRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return QueryTicketOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return QueryTicketOutcome(QueryTicketResult(outcome.result()));
|
||||
else
|
||||
return QueryTicketOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void CcsClient::queryTicketAsync(const QueryTicketRequest& request, const QueryTicketAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, queryTicket(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
CcsClient::QueryTicketOutcomeCallable CcsClient::queryTicketCallable(const QueryTicketRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<QueryTicketOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->queryTicket(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
CcsClient::GetHotlineRecordOutcome CcsClient::getHotlineRecord(const GetHotlineRecordRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -87,6 +159,42 @@ CcsClient::GetHotlineRecordOutcomeCallable CcsClient::getHotlineRecordCallable(c
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
CcsClient::ProceedTicketOutcome CcsClient::proceedTicket(const ProceedTicketRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return ProceedTicketOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return ProceedTicketOutcome(ProceedTicketResult(outcome.result()));
|
||||
else
|
||||
return ProceedTicketOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void CcsClient::proceedTicketAsync(const ProceedTicketRequest& request, const ProceedTicketAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, proceedTicket(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
CcsClient::ProceedTicketOutcomeCallable CcsClient::proceedTicketCallable(const ProceedTicketRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<ProceedTicketOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->proceedTicket(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
CcsClient::QueryHotlineRecordOutcome CcsClient::queryHotlineRecord(const QueryHotlineRecordRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
|
||||
82
ccs/src/model/CreateTicketRequest.cc
Normal file
82
ccs/src/model/CreateTicketRequest.cc
Normal file
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/ccs/model/CreateTicketRequest.h>
|
||||
|
||||
using AlibabaCloud::Ccs::Model::CreateTicketRequest;
|
||||
|
||||
CreateTicketRequest::CreateTicketRequest() :
|
||||
RpcServiceRequest("ccs", "2017-10-01", "CreateTicket")
|
||||
{}
|
||||
|
||||
CreateTicketRequest::~CreateTicketRequest()
|
||||
{}
|
||||
|
||||
std::string CreateTicketRequest::getCreatorId()const
|
||||
{
|
||||
return creatorId_;
|
||||
}
|
||||
|
||||
void CreateTicketRequest::setCreatorId(const std::string& creatorId)
|
||||
{
|
||||
creatorId_ = creatorId;
|
||||
setParameter("CreatorId", creatorId);
|
||||
}
|
||||
|
||||
std::string CreateTicketRequest::getDescription()const
|
||||
{
|
||||
return description_;
|
||||
}
|
||||
|
||||
void CreateTicketRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateTicketRequest::getType()const
|
||||
{
|
||||
return type_;
|
||||
}
|
||||
|
||||
void CreateTicketRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string CreateTicketRequest::getCcsInstanceId()const
|
||||
{
|
||||
return ccsInstanceId_;
|
||||
}
|
||||
|
||||
void CreateTicketRequest::setCcsInstanceId(const std::string& ccsInstanceId)
|
||||
{
|
||||
ccsInstanceId_ = ccsInstanceId;
|
||||
setParameter("CcsInstanceId", ccsInstanceId);
|
||||
}
|
||||
|
||||
std::string CreateTicketRequest::getCustomFields()const
|
||||
{
|
||||
return customFields_;
|
||||
}
|
||||
|
||||
void CreateTicketRequest::setCustomFields(const std::string& customFields)
|
||||
{
|
||||
customFields_ = customFields;
|
||||
setParameter("CustomFields", customFields);
|
||||
}
|
||||
|
||||
52
ccs/src/model/CreateTicketResult.cc
Normal file
52
ccs/src/model/CreateTicketResult.cc
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/ccs/model/CreateTicketResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Ccs;
|
||||
using namespace AlibabaCloud::Ccs::Model;
|
||||
|
||||
CreateTicketResult::CreateTicketResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
CreateTicketResult::CreateTicketResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
CreateTicketResult::~CreateTicketResult()
|
||||
{}
|
||||
|
||||
void CreateTicketResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["Id"].isNull())
|
||||
id_ = value["Id"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string CreateTicketResult::getId()const
|
||||
{
|
||||
return id_;
|
||||
}
|
||||
|
||||
0
ccs/src/model/GetHotlineRecordRequest.cc
Executable file → Normal file
0
ccs/src/model/GetHotlineRecordRequest.cc
Executable file → Normal file
0
ccs/src/model/GetHotlineRecordResult.cc
Executable file → Normal file
0
ccs/src/model/GetHotlineRecordResult.cc
Executable file → Normal file
82
ccs/src/model/ProceedTicketRequest.cc
Normal file
82
ccs/src/model/ProceedTicketRequest.cc
Normal file
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/ccs/model/ProceedTicketRequest.h>
|
||||
|
||||
using AlibabaCloud::Ccs::Model::ProceedTicketRequest;
|
||||
|
||||
ProceedTicketRequest::ProceedTicketRequest() :
|
||||
RpcServiceRequest("ccs", "2017-10-01", "ProceedTicket")
|
||||
{}
|
||||
|
||||
ProceedTicketRequest::~ProceedTicketRequest()
|
||||
{}
|
||||
|
||||
std::string ProceedTicketRequest::getMemo()const
|
||||
{
|
||||
return memo_;
|
||||
}
|
||||
|
||||
void ProceedTicketRequest::setMemo(const std::string& memo)
|
||||
{
|
||||
memo_ = memo;
|
||||
setParameter("Memo", memo);
|
||||
}
|
||||
|
||||
std::string ProceedTicketRequest::getId()const
|
||||
{
|
||||
return id_;
|
||||
}
|
||||
|
||||
void ProceedTicketRequest::setId(const std::string& id)
|
||||
{
|
||||
id_ = id;
|
||||
setParameter("Id", id);
|
||||
}
|
||||
|
||||
std::string ProceedTicketRequest::getCcsInstanceId()const
|
||||
{
|
||||
return ccsInstanceId_;
|
||||
}
|
||||
|
||||
void ProceedTicketRequest::setCcsInstanceId(const std::string& ccsInstanceId)
|
||||
{
|
||||
ccsInstanceId_ = ccsInstanceId;
|
||||
setParameter("CcsInstanceId", ccsInstanceId);
|
||||
}
|
||||
|
||||
std::string ProceedTicketRequest::getOperation()const
|
||||
{
|
||||
return operation_;
|
||||
}
|
||||
|
||||
void ProceedTicketRequest::setOperation(const std::string& operation)
|
||||
{
|
||||
operation_ = operation;
|
||||
setParameter("Operation", operation);
|
||||
}
|
||||
|
||||
std::string ProceedTicketRequest::getOperatorId()const
|
||||
{
|
||||
return operatorId_;
|
||||
}
|
||||
|
||||
void ProceedTicketRequest::setOperatorId(const std::string& operatorId)
|
||||
{
|
||||
operatorId_ = operatorId;
|
||||
setParameter("OperatorId", operatorId);
|
||||
}
|
||||
|
||||
45
ccs/src/model/ProceedTicketResult.cc
Normal file
45
ccs/src/model/ProceedTicketResult.cc
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/ccs/model/ProceedTicketResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Ccs;
|
||||
using namespace AlibabaCloud::Ccs::Model;
|
||||
|
||||
ProceedTicketResult::ProceedTicketResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
ProceedTicketResult::ProceedTicketResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
ProceedTicketResult::~ProceedTicketResult()
|
||||
{}
|
||||
|
||||
void ProceedTicketResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
|
||||
}
|
||||
|
||||
0
ccs/src/model/QueryHotlineRecordRequest.cc
Executable file → Normal file
0
ccs/src/model/QueryHotlineRecordRequest.cc
Executable file → Normal file
4
ccs/src/model/QueryHotlineRecordResult.cc
Executable file → Normal file
4
ccs/src/model/QueryHotlineRecordResult.cc
Executable file → Normal file
@@ -85,7 +85,7 @@ void QueryHotlineRecordResult::parse(const std::string &payload)
|
||||
records_.push_back(recordsObject);
|
||||
}
|
||||
if(!value["TotalCount"].isNull())
|
||||
totalCount_ = std::stoi(value["TotalCount"].asString());
|
||||
totalCount_ = std::stol(value["TotalCount"].asString());
|
||||
if(!value["PageNum"].isNull())
|
||||
pageNum_ = std::stoi(value["PageNum"].asString());
|
||||
if(!value["PageSize"].isNull())
|
||||
@@ -93,7 +93,7 @@ void QueryHotlineRecordResult::parse(const std::string &payload)
|
||||
|
||||
}
|
||||
|
||||
int QueryHotlineRecordResult::getTotalCount()const
|
||||
long QueryHotlineRecordResult::getTotalCount()const
|
||||
{
|
||||
return totalCount_;
|
||||
}
|
||||
|
||||
115
ccs/src/model/QueryTicketRequest.cc
Normal file
115
ccs/src/model/QueryTicketRequest.cc
Normal file
@@ -0,0 +1,115 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/ccs/model/QueryTicketRequest.h>
|
||||
|
||||
using AlibabaCloud::Ccs::Model::QueryTicketRequest;
|
||||
|
||||
QueryTicketRequest::QueryTicketRequest() :
|
||||
RpcServiceRequest("ccs", "2017-10-01", "QueryTicket")
|
||||
{}
|
||||
|
||||
QueryTicketRequest::~QueryTicketRequest()
|
||||
{}
|
||||
|
||||
std::string QueryTicketRequest::getStage()const
|
||||
{
|
||||
return stage_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setStage(const std::string& stage)
|
||||
{
|
||||
stage_ = stage;
|
||||
setParameter("Stage", stage);
|
||||
}
|
||||
|
||||
int QueryTicketRequest::getPageSize()const
|
||||
{
|
||||
return pageSize_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string QueryTicketRequest::getCreatorId()const
|
||||
{
|
||||
return creatorId_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setCreatorId(const std::string& creatorId)
|
||||
{
|
||||
creatorId_ = creatorId;
|
||||
setParameter("CreatorId", creatorId);
|
||||
}
|
||||
|
||||
std::string QueryTicketRequest::getEndTime()const
|
||||
{
|
||||
return endTime_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
std::string QueryTicketRequest::getStartTime()const
|
||||
{
|
||||
return startTime_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
int QueryTicketRequest::getPageNum()const
|
||||
{
|
||||
return pageNum_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setPageNum(int pageNum)
|
||||
{
|
||||
pageNum_ = pageNum;
|
||||
setParameter("PageNum", std::to_string(pageNum));
|
||||
}
|
||||
|
||||
std::string QueryTicketRequest::getType()const
|
||||
{
|
||||
return type_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string QueryTicketRequest::getCcsInstanceId()const
|
||||
{
|
||||
return ccsInstanceId_;
|
||||
}
|
||||
|
||||
void QueryTicketRequest::setCcsInstanceId(const std::string& ccsInstanceId)
|
||||
{
|
||||
ccsInstanceId_ = ccsInstanceId;
|
||||
setParameter("CcsInstanceId", ccsInstanceId);
|
||||
}
|
||||
|
||||
91
ccs/src/model/QueryTicketResult.cc
Normal file
91
ccs/src/model/QueryTicketResult.cc
Normal file
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/ccs/model/QueryTicketResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Ccs;
|
||||
using namespace AlibabaCloud::Ccs::Model;
|
||||
|
||||
QueryTicketResult::QueryTicketResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
QueryTicketResult::QueryTicketResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
QueryTicketResult::~QueryTicketResult()
|
||||
{}
|
||||
|
||||
void QueryTicketResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allTickets = value["Tickets"]["Ticket"];
|
||||
for (auto value : allTickets)
|
||||
{
|
||||
Ticket ticketsObject;
|
||||
if(!value["Id"].isNull())
|
||||
ticketsObject.id = value["Id"].asString();
|
||||
if(!value["Type"].isNull())
|
||||
ticketsObject.type = value["Type"].asString();
|
||||
if(!value["Stage"].isNull())
|
||||
ticketsObject.stage = value["Stage"].asString();
|
||||
if(!value["Description"].isNull())
|
||||
ticketsObject.description = value["Description"].asString();
|
||||
if(!value["CreatorId"].isNull())
|
||||
ticketsObject.creatorId = value["CreatorId"].asString();
|
||||
if(!value["CreateTime"].isNull())
|
||||
ticketsObject.createTime = value["CreateTime"].asString();
|
||||
if(!value["CustomFields"].isNull())
|
||||
ticketsObject.customFields = value["CustomFields"].asString();
|
||||
tickets_.push_back(ticketsObject);
|
||||
}
|
||||
if(!value["PageNum"].isNull())
|
||||
pageNum_ = std::stoi(value["PageNum"].asString());
|
||||
if(!value["PageSize"].isNull())
|
||||
pageSize_ = std::stoi(value["PageSize"].asString());
|
||||
if(!value["TotalCount"].isNull())
|
||||
totalCount_ = std::stol(value["TotalCount"].asString());
|
||||
|
||||
}
|
||||
|
||||
long QueryTicketResult::getTotalCount()const
|
||||
{
|
||||
return totalCount_;
|
||||
}
|
||||
|
||||
int QueryTicketResult::getPageNum()const
|
||||
{
|
||||
return pageNum_;
|
||||
}
|
||||
|
||||
int QueryTicketResult::getPageSize()const
|
||||
{
|
||||
return pageSize_;
|
||||
}
|
||||
|
||||
std::vector<QueryTicketResult::Ticket> QueryTicketResult::getTickets()const
|
||||
{
|
||||
return tickets_;
|
||||
}
|
||||
|
||||
@@ -18,8 +18,15 @@
|
||||
#define CORE_INCLUDE_ALIBABACLOUD_CORE_ALIBABACLOUD_H_
|
||||
|
||||
#include "CoreExport.h"
|
||||
#include <limits>
|
||||
|
||||
namespace AlibabaCloud {
|
||||
|
||||
const long kInvalidTimeout = (std::numeric_limits<long>::min)();
|
||||
|
||||
const long kDefaultConnectTimeout = 5000;
|
||||
const long kDefaultReadTimeout = 10000;
|
||||
|
||||
ALIBABACLOUD_CORE_EXPORT void InitializeSdk();
|
||||
ALIBABACLOUD_CORE_EXPORT bool IsSdkInitialized();
|
||||
ALIBABACLOUD_CORE_EXPORT void ShutdownSdk();
|
||||
|
||||
@@ -38,10 +38,17 @@ class ALIBABACLOUD_CORE_EXPORT ClientConfiguration {
|
||||
void setProxy(const NetworkProxy &proxy);
|
||||
void setRegionId(const std::string ®ionId);
|
||||
|
||||
long connectTimeout() const;
|
||||
long readTimeout() const;
|
||||
void setConnectTimeout(const long connectTimeout);
|
||||
void setReadTimeout(const long readTimeout);
|
||||
|
||||
private:
|
||||
std::string endpoint_;
|
||||
NetworkProxy proxy_;
|
||||
std::string regionId_;
|
||||
long connectTimeout_;
|
||||
long readTimeout_;
|
||||
};
|
||||
} // namespace AlibabaCloud
|
||||
|
||||
|
||||
@@ -42,10 +42,16 @@ class ALIBABACLOUD_CORE_EXPORT HttpRequest : public HttpMessage {
|
||||
void setMethod(Method method);
|
||||
void setUrl(const Url &url);
|
||||
Url url()const;
|
||||
long connectTimeout() const;
|
||||
long readTimeout() const;
|
||||
void setConnectTimeout(const long connectTimeout);
|
||||
void setReadTimeout(const long readTimeout);
|
||||
|
||||
private:
|
||||
Method method_;
|
||||
Url url_;
|
||||
long connectTimeout_;
|
||||
long readTimeout_;
|
||||
};
|
||||
} // namespace AlibabaCloud
|
||||
#endif // CORE_INCLUDE_ALIBABACLOUD_CORE_HTTPREQUEST_H_
|
||||
|
||||
@@ -39,6 +39,10 @@ class ALIBABACLOUD_CORE_EXPORT ServiceRequest {
|
||||
std::string resourcePath() const;
|
||||
std::string version() const;
|
||||
std::string scheme() const;
|
||||
long connectTimeout() const;
|
||||
long readTimeout() const;
|
||||
void setConnectTimeout(const long connectTimeout);
|
||||
void setReadTimeout(const long readTimeout);
|
||||
|
||||
protected:
|
||||
ServiceRequest(const std::string &product, const std::string &version);
|
||||
@@ -68,6 +72,8 @@ class ALIBABACLOUD_CORE_EXPORT ServiceRequest {
|
||||
std::string resourcePath_;
|
||||
std::string version_;
|
||||
std::string scheme_;
|
||||
long connectTimeout_;
|
||||
long readTimeout_;
|
||||
};
|
||||
} // namespace AlibabaCloud
|
||||
|
||||
|
||||
@@ -26,14 +26,13 @@ class ALIBABACLOUD_CORE_EXPORT ServiceResult {
|
||||
public:
|
||||
ServiceResult();
|
||||
virtual ~ServiceResult();
|
||||
|
||||
std::string requestId()const;
|
||||
|
||||
protected:
|
||||
void setRequestId(const std::string &requestId);
|
||||
|
||||
private:
|
||||
std::string requestId_;
|
||||
std::string requestId_;
|
||||
};
|
||||
} // namespace AlibabaCloud
|
||||
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
*/
|
||||
|
||||
#include <alibabacloud/core/ClientConfiguration.h>
|
||||
#include <alibabacloud/core/AlibabaCloud.h>
|
||||
|
||||
namespace AlibabaCloud {
|
||||
|
||||
@@ -22,7 +23,9 @@ ClientConfiguration::ClientConfiguration(const std::string ®ionId,
|
||||
const NetworkProxy &proxy):
|
||||
regionId_(regionId),
|
||||
proxy_(proxy),
|
||||
endpoint_() {
|
||||
endpoint_(),
|
||||
connectTimeout_(kDefaultConnectTimeout),
|
||||
readTimeout_(kDefaultReadTimeout) {
|
||||
}
|
||||
|
||||
ClientConfiguration::~ClientConfiguration() {
|
||||
@@ -52,4 +55,20 @@ void ClientConfiguration::setRegionId(const std::string ®ionId) {
|
||||
regionId_ = regionId;
|
||||
}
|
||||
|
||||
long ClientConfiguration::connectTimeout() const {
|
||||
return connectTimeout_;
|
||||
}
|
||||
|
||||
long ClientConfiguration::readTimeout() const {
|
||||
return readTimeout_;
|
||||
}
|
||||
|
||||
void ClientConfiguration::setConnectTimeout(const long connectTimeout) {
|
||||
connectTimeout_ = connectTimeout;
|
||||
}
|
||||
|
||||
void ClientConfiguration::setReadTimeout(const long readTimeout) {
|
||||
readTimeout_ = readTimeout;
|
||||
}
|
||||
|
||||
} // namespace AlibabaCloud
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/core/AlibabaCloud.h>
|
||||
#include <alibabacloud/core/CommonClient.h>
|
||||
#include <alibabacloud/core/location/LocationClient.h>
|
||||
#include <alibabacloud/core/SimpleCredentialsProvider.h>
|
||||
@@ -145,6 +146,19 @@ HttpRequest CommonClient::buildRoaHttpRequest(const std::string & endpoint,
|
||||
|
||||
HttpRequest request(url);
|
||||
request.setMethod(method);
|
||||
|
||||
if (msg.connectTimeout() != kInvalidTimeout) {
|
||||
request.setConnectTimeout(msg.connectTimeout());
|
||||
} else {
|
||||
request.setConnectTimeout(configuration().connectTimeout());
|
||||
}
|
||||
|
||||
if (msg.readTimeout() != kInvalidTimeout) {
|
||||
request.setReadTimeout(msg.readTimeout());
|
||||
} else {
|
||||
request.setReadTimeout(configuration().readTimeout());
|
||||
}
|
||||
|
||||
if (msg.headerParameter("Accept").empty()) {
|
||||
request.setHeader("Accept", "application/json");
|
||||
} else {
|
||||
@@ -260,6 +274,18 @@ HttpRequest CommonClient::buildRpcHttpRequest(const std::string & endpoint,
|
||||
url.setQuery(queryString.str().substr(1));
|
||||
|
||||
HttpRequest request(url);
|
||||
if (msg.connectTimeout() != kInvalidTimeout) {
|
||||
request.setConnectTimeout(msg.connectTimeout());
|
||||
} else {
|
||||
request.setConnectTimeout(configuration().connectTimeout());
|
||||
}
|
||||
|
||||
if (msg.readTimeout() != kInvalidTimeout) {
|
||||
request.setReadTimeout(msg.readTimeout());
|
||||
} else {
|
||||
request.setReadTimeout(configuration().readTimeout());
|
||||
}
|
||||
|
||||
request.setMethod(method);
|
||||
request.setHeader("Host", url.host());
|
||||
request.setHeader("x-sdk-client",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user