144 lines
4.5 KiB
C++
144 lines
4.5 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/ecs/model/ModifyDiskAttributeRequest.h>
|
|
|
|
using AlibabaCloud::Ecs::Model::ModifyDiskAttributeRequest;
|
|
|
|
ModifyDiskAttributeRequest::ModifyDiskAttributeRequest()
|
|
: RpcServiceRequest("ecs", "2014-05-26", "ModifyDiskAttribute") {
|
|
setMethod(HttpRequest::Method::Post);
|
|
}
|
|
|
|
ModifyDiskAttributeRequest::~ModifyDiskAttributeRequest() {}
|
|
|
|
long ModifyDiskAttributeRequest::getResourceOwnerId() const {
|
|
return resourceOwnerId_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setResourceOwnerId(long resourceOwnerId) {
|
|
resourceOwnerId_ = resourceOwnerId;
|
|
setParameter(std::string("ResourceOwnerId"), std::to_string(resourceOwnerId));
|
|
}
|
|
|
|
std::string ModifyDiskAttributeRequest::getDescription() const {
|
|
return description_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setDescription(const std::string &description) {
|
|
description_ = description;
|
|
setParameter(std::string("Description"), description);
|
|
}
|
|
|
|
std::string ModifyDiskAttributeRequest::getDiskName() const {
|
|
return diskName_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setDiskName(const std::string &diskName) {
|
|
diskName_ = diskName;
|
|
setParameter(std::string("DiskName"), diskName);
|
|
}
|
|
|
|
bool ModifyDiskAttributeRequest::getDeleteAutoSnapshot() const {
|
|
return deleteAutoSnapshot_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setDeleteAutoSnapshot(bool deleteAutoSnapshot) {
|
|
deleteAutoSnapshot_ = deleteAutoSnapshot;
|
|
setParameter(std::string("DeleteAutoSnapshot"), deleteAutoSnapshot ? "true" : "false");
|
|
}
|
|
|
|
std::string ModifyDiskAttributeRequest::getRegionId() const {
|
|
return regionId_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setRegionId(const std::string ®ionId) {
|
|
regionId_ = regionId;
|
|
setParameter(std::string("RegionId"), regionId);
|
|
}
|
|
|
|
std::vector<std::string> ModifyDiskAttributeRequest::getDiskIds() const {
|
|
return diskIds_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setDiskIds(const std::vector<std::string> &diskIds) {
|
|
diskIds_ = diskIds;
|
|
}
|
|
|
|
std::string ModifyDiskAttributeRequest::getDiskId() const {
|
|
return diskId_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setDiskId(const std::string &diskId) {
|
|
diskId_ = diskId;
|
|
setParameter(std::string("DiskId"), diskId);
|
|
}
|
|
|
|
bool ModifyDiskAttributeRequest::getDeleteWithInstance() const {
|
|
return deleteWithInstance_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setDeleteWithInstance(bool deleteWithInstance) {
|
|
deleteWithInstance_ = deleteWithInstance;
|
|
setParameter(std::string("DeleteWithInstance"), deleteWithInstance ? "true" : "false");
|
|
}
|
|
|
|
bool ModifyDiskAttributeRequest::getEnableAutoSnapshot() const {
|
|
return enableAutoSnapshot_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setEnableAutoSnapshot(bool enableAutoSnapshot) {
|
|
enableAutoSnapshot_ = enableAutoSnapshot;
|
|
setParameter(std::string("EnableAutoSnapshot"), enableAutoSnapshot ? "true" : "false");
|
|
}
|
|
|
|
std::string ModifyDiskAttributeRequest::getResourceOwnerAccount() const {
|
|
return resourceOwnerAccount_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setResourceOwnerAccount(const std::string &resourceOwnerAccount) {
|
|
resourceOwnerAccount_ = resourceOwnerAccount;
|
|
setParameter(std::string("ResourceOwnerAccount"), resourceOwnerAccount);
|
|
}
|
|
|
|
std::string ModifyDiskAttributeRequest::getOwnerAccount() const {
|
|
return ownerAccount_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setOwnerAccount(const std::string &ownerAccount) {
|
|
ownerAccount_ = ownerAccount;
|
|
setParameter(std::string("OwnerAccount"), ownerAccount);
|
|
}
|
|
|
|
long ModifyDiskAttributeRequest::getOwnerId() const {
|
|
return ownerId_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setOwnerId(long ownerId) {
|
|
ownerId_ = ownerId;
|
|
setParameter(std::string("OwnerId"), std::to_string(ownerId));
|
|
}
|
|
|
|
bool ModifyDiskAttributeRequest::getBurstingEnabled() const {
|
|
return burstingEnabled_;
|
|
}
|
|
|
|
void ModifyDiskAttributeRequest::setBurstingEnabled(bool burstingEnabled) {
|
|
burstingEnabled_ = burstingEnabled;
|
|
setParameter(std::string("BurstingEnabled"), burstingEnabled ? "true" : "false");
|
|
}
|
|
|