Generated 2018-12-12 for vs.
This commit is contained in:
@@ -166,6 +166,8 @@
|
||||
#include "model/DescribeVsDomainDetailResult.h"
|
||||
#include "model/DescribeVsDomainPvDataRequest.h"
|
||||
#include "model/DescribeVsDomainPvDataResult.h"
|
||||
#include "model/DescribeVsDomainPvUvDataRequest.h"
|
||||
#include "model/DescribeVsDomainPvUvDataResult.h"
|
||||
#include "model/DescribeVsDomainRecordDataRequest.h"
|
||||
#include "model/DescribeVsDomainRecordDataResult.h"
|
||||
#include "model/DescribeVsDomainRegionDataRequest.h"
|
||||
@@ -483,6 +485,9 @@ namespace AlibabaCloud
|
||||
typedef Outcome<Error, Model::DescribeVsDomainPvDataResult> DescribeVsDomainPvDataOutcome;
|
||||
typedef std::future<DescribeVsDomainPvDataOutcome> DescribeVsDomainPvDataOutcomeCallable;
|
||||
typedef std::function<void(const VsClient*, const Model::DescribeVsDomainPvDataRequest&, const DescribeVsDomainPvDataOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeVsDomainPvDataAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeVsDomainPvUvDataResult> DescribeVsDomainPvUvDataOutcome;
|
||||
typedef std::future<DescribeVsDomainPvUvDataOutcome> DescribeVsDomainPvUvDataOutcomeCallable;
|
||||
typedef std::function<void(const VsClient*, const Model::DescribeVsDomainPvUvDataRequest&, const DescribeVsDomainPvUvDataOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeVsDomainPvUvDataAsyncHandler;
|
||||
typedef Outcome<Error, Model::DescribeVsDomainRecordDataResult> DescribeVsDomainRecordDataOutcome;
|
||||
typedef std::future<DescribeVsDomainRecordDataOutcome> DescribeVsDomainRecordDataOutcomeCallable;
|
||||
typedef std::function<void(const VsClient*, const Model::DescribeVsDomainRecordDataRequest&, const DescribeVsDomainRecordDataOutcome&, const std::shared_ptr<const AsyncCallerContext>&)> DescribeVsDomainRecordDataAsyncHandler;
|
||||
@@ -842,6 +847,9 @@ namespace AlibabaCloud
|
||||
DescribeVsDomainPvDataOutcome describeVsDomainPvData(const Model::DescribeVsDomainPvDataRequest &request)const;
|
||||
void describeVsDomainPvDataAsync(const Model::DescribeVsDomainPvDataRequest& request, const DescribeVsDomainPvDataAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeVsDomainPvDataOutcomeCallable describeVsDomainPvDataCallable(const Model::DescribeVsDomainPvDataRequest& request) const;
|
||||
DescribeVsDomainPvUvDataOutcome describeVsDomainPvUvData(const Model::DescribeVsDomainPvUvDataRequest &request)const;
|
||||
void describeVsDomainPvUvDataAsync(const Model::DescribeVsDomainPvUvDataRequest& request, const DescribeVsDomainPvUvDataAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeVsDomainPvUvDataOutcomeCallable describeVsDomainPvUvDataCallable(const Model::DescribeVsDomainPvUvDataRequest& request) const;
|
||||
DescribeVsDomainRecordDataOutcome describeVsDomainRecordData(const Model::DescribeVsDomainRecordDataRequest &request)const;
|
||||
void describeVsDomainRecordDataAsync(const Model::DescribeVsDomainRecordDataRequest& request, const DescribeVsDomainRecordDataAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context = nullptr) const;
|
||||
DescribeVsDomainRecordDataOutcomeCallable describeVsDomainRecordDataCallable(const Model::DescribeVsDomainRecordDataRequest& request) const;
|
||||
|
||||
@@ -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_VS_MODEL_DESCRIBEVSDOMAINPVUVDATAREQUEST_H_
|
||||
#define ALIBABACLOUD_VS_MODEL_DESCRIBEVSDOMAINPVUVDATAREQUEST_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <alibabacloud/core/RpcServiceRequest.h>
|
||||
#include <alibabacloud/vs/VsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Vs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_VS_EXPORT DescribeVsDomainPvUvDataRequest : public RpcServiceRequest
|
||||
{
|
||||
|
||||
public:
|
||||
DescribeVsDomainPvUvDataRequest();
|
||||
~DescribeVsDomainPvUvDataRequest();
|
||||
|
||||
std::string getStartTime()const;
|
||||
void setStartTime(const std::string& startTime);
|
||||
std::string getShowLog()const;
|
||||
void setShowLog(const std::string& showLog);
|
||||
std::string getDomainName()const;
|
||||
void setDomainName(const std::string& domainName);
|
||||
std::string getEndTime()const;
|
||||
void setEndTime(const std::string& endTime);
|
||||
long getOwnerId()const;
|
||||
void setOwnerId(long ownerId);
|
||||
|
||||
private:
|
||||
std::string startTime_;
|
||||
std::string showLog_;
|
||||
std::string domainName_;
|
||||
std::string endTime_;
|
||||
long ownerId_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_VS_MODEL_DESCRIBEVSDOMAINPVUVDATAREQUEST_H_
|
||||
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* 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_VS_MODEL_DESCRIBEVSDOMAINPVUVDATARESULT_H_
|
||||
#define ALIBABACLOUD_VS_MODEL_DESCRIBEVSDOMAINPVUVDATARESULT_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
#include <alibabacloud/core/ServiceResult.h>
|
||||
#include <alibabacloud/vs/VsExport.h>
|
||||
|
||||
namespace AlibabaCloud
|
||||
{
|
||||
namespace Vs
|
||||
{
|
||||
namespace Model
|
||||
{
|
||||
class ALIBABACLOUD_VS_EXPORT DescribeVsDomainPvUvDataResult : public ServiceResult
|
||||
{
|
||||
public:
|
||||
struct PvUvDataInfo
|
||||
{
|
||||
std::string uV;
|
||||
std::string pV;
|
||||
std::string timeStamp;
|
||||
};
|
||||
|
||||
|
||||
DescribeVsDomainPvUvDataResult();
|
||||
explicit DescribeVsDomainPvUvDataResult(const std::string &payload);
|
||||
~DescribeVsDomainPvUvDataResult();
|
||||
std::string getDomainName()const;
|
||||
std::string getStartTime()const;
|
||||
std::vector<PvUvDataInfo> getPvUvDataInfos()const;
|
||||
|
||||
protected:
|
||||
void parse(const std::string &payload);
|
||||
private:
|
||||
std::string domainName_;
|
||||
std::string startTime_;
|
||||
std::vector<PvUvDataInfo> pvUvDataInfos_;
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // !ALIBABACLOUD_VS_MODEL_DESCRIBEVSDOMAINPVUVDATARESULT_H_
|
||||
Reference in New Issue
Block a user