Files
aliyun-openapi-cpp-sdk/edas/src/model/DeleteLogPathRequest.cc
2021-08-31 02:39:54 +00:00

53 lines
1.3 KiB
C++

/*
* 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/edas/model/DeleteLogPathRequest.h>
using AlibabaCloud::Edas::Model::DeleteLogPathRequest;
DeleteLogPathRequest::DeleteLogPathRequest() :
RoaServiceRequest("edas", "2017-08-01")
{
setResourcePath("/pop/v5/log/popListLogDirs");
setMethod(HttpRequest::Method::Delete);
}
DeleteLogPathRequest::~DeleteLogPathRequest()
{}
std::string DeleteLogPathRequest::getPath()const
{
return path_;
}
void DeleteLogPathRequest::setPath(const std::string& path)
{
path_ = path;
setParameter("Path", path);
}
std::string DeleteLogPathRequest::getAppId()const
{
return appId_;
}
void DeleteLogPathRequest::setAppId(const std::string& appId)
{
appId_ = appId;
setParameter("AppId", appId);
}