Add GetMultipleTrace api.
This commit is contained in:
53
arms/src/model/GetMultipleTraceRequest.cc
Normal file
53
arms/src/model/GetMultipleTraceRequest.cc
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* 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/arms/model/GetMultipleTraceRequest.h>
|
||||
|
||||
using AlibabaCloud::ARMS::Model::GetMultipleTraceRequest;
|
||||
|
||||
GetMultipleTraceRequest::GetMultipleTraceRequest() :
|
||||
RpcServiceRequest("arms", "2019-08-08", "GetMultipleTrace")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
GetMultipleTraceRequest::~GetMultipleTraceRequest()
|
||||
{}
|
||||
|
||||
std::vector<std::string> GetMultipleTraceRequest::getTraceIDs()const
|
||||
{
|
||||
return traceIDs_;
|
||||
}
|
||||
|
||||
void GetMultipleTraceRequest::setTraceIDs(const std::vector<std::string>& traceIDs)
|
||||
{
|
||||
traceIDs_ = traceIDs;
|
||||
for(int dep1 = 0; dep1!= traceIDs.size(); dep1++) {
|
||||
setParameter("TraceIDs."+ std::to_string(dep1), traceIDs.at(dep1));
|
||||
}
|
||||
}
|
||||
|
||||
std::string GetMultipleTraceRequest::getRegionId()const
|
||||
{
|
||||
return regionId_;
|
||||
}
|
||||
|
||||
void GetMultipleTraceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user