AEGIS SDK Auto Released By lai.zhoulai,Version:1.36.5
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
115
aegis/src/model/ModifyWebLockUpdateConfigRequest.cc
Normal file
115
aegis/src/model/ModifyWebLockUpdateConfigRequest.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/aegis/model/ModifyWebLockUpdateConfigRequest.h>
|
||||
|
||||
using AlibabaCloud::Aegis::Model::ModifyWebLockUpdateConfigRequest;
|
||||
|
||||
ModifyWebLockUpdateConfigRequest::ModifyWebLockUpdateConfigRequest() :
|
||||
RpcServiceRequest("aegis", "2016-11-11", "ModifyWebLockUpdateConfig")
|
||||
{}
|
||||
|
||||
ModifyWebLockUpdateConfigRequest::~ModifyWebLockUpdateConfigRequest()
|
||||
{}
|
||||
|
||||
std::string ModifyWebLockUpdateConfigRequest::getLocalBackupDir()const
|
||||
{
|
||||
return localBackupDir_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setLocalBackupDir(const std::string& localBackupDir)
|
||||
{
|
||||
localBackupDir_ = localBackupDir;
|
||||
setCoreParameter("LocalBackupDir", localBackupDir);
|
||||
}
|
||||
|
||||
std::string ModifyWebLockUpdateConfigRequest::getSourceIp()const
|
||||
{
|
||||
return sourceIp_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setSourceIp(const std::string& sourceIp)
|
||||
{
|
||||
sourceIp_ = sourceIp;
|
||||
setCoreParameter("SourceIp", sourceIp);
|
||||
}
|
||||
|
||||
std::string ModifyWebLockUpdateConfigRequest::getExclusiveFileType()const
|
||||
{
|
||||
return exclusiveFileType_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setExclusiveFileType(const std::string& exclusiveFileType)
|
||||
{
|
||||
exclusiveFileType_ = exclusiveFileType;
|
||||
setCoreParameter("ExclusiveFileType", exclusiveFileType);
|
||||
}
|
||||
|
||||
int ModifyWebLockUpdateConfigRequest::getId()const
|
||||
{
|
||||
return id_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setId(int id)
|
||||
{
|
||||
id_ = id;
|
||||
setCoreParameter("Id", std::to_string(id));
|
||||
}
|
||||
|
||||
std::string ModifyWebLockUpdateConfigRequest::getLang()const
|
||||
{
|
||||
return lang_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setLang(const std::string& lang)
|
||||
{
|
||||
lang_ = lang;
|
||||
setCoreParameter("Lang", lang);
|
||||
}
|
||||
|
||||
std::string ModifyWebLockUpdateConfigRequest::getDir()const
|
||||
{
|
||||
return dir_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setDir(const std::string& dir)
|
||||
{
|
||||
dir_ = dir;
|
||||
setCoreParameter("Dir", dir);
|
||||
}
|
||||
|
||||
std::string ModifyWebLockUpdateConfigRequest::getUuid()const
|
||||
{
|
||||
return uuid_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setUuid(const std::string& uuid)
|
||||
{
|
||||
uuid_ = uuid;
|
||||
setCoreParameter("Uuid", uuid);
|
||||
}
|
||||
|
||||
std::string ModifyWebLockUpdateConfigRequest::getExclusiveDir()const
|
||||
{
|
||||
return exclusiveDir_;
|
||||
}
|
||||
|
||||
void ModifyWebLockUpdateConfigRequest::setExclusiveDir(const std::string& exclusiveDir)
|
||||
{
|
||||
exclusiveDir_ = exclusiveDir;
|
||||
setCoreParameter("ExclusiveDir", exclusiveDir);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user