#include "huaweicloud/rds/v3/model/ConfigurationParameter.h"
namespace HuaweiCloud {
namespace Sdk {
namespace Rds {
namespace V3 {
namespace Model {
ConfigurationParameter::ConfigurationParameter()
{
name_ = "";
nameIsSet_ = false;
value_ = "";
valueIsSet_ = false;
restartRequired_ = false;
restartRequiredIsSet_ = false;
readonly_ = false;
readonlyIsSet_ = false;
valueRange_ = "";
valueRangeIsSet_ = false;
type_ = "";
typeIsSet_ = false;
description_ = "";
descriptionIsSet_ = false;
}
ConfigurationParameter::~ConfigurationParameter() = default;
void ConfigurationParameter::validate()
{
}
web::json::value ConfigurationParameter::toJson() const
{
web::json::value val = web::json::value::object();
if(nameIsSet_) {
val[utility::conversions::to_string_t("name")] = ModelBase::toJson(name_);
}
if(valueIsSet_) {
val[utility::conversions::to_string_t("value")] = ModelBase::toJson(value_);
}
if(restartRequiredIsSet_) {
val[utility::conversions::to_string_t("restart_required")] = ModelBase::toJson(restartRequired_);
}
if(readonlyIsSet_) {
val[utility::conversions::to_string_t("readonly")] = ModelBase::toJson(readonly_);
}
if(valueRangeIsSet_) {
val[utility::conversions::to_string_t("value_range")] = ModelBase::toJson(valueRange_);
}
if(typeIsSet_) {
val[utility::conversions::to_string_t("type")] = ModelBase::toJson(type_);
}
if(descriptionIsSet_) {
val[utility::conversions::to_string_t("description")] = ModelBase::toJson(description_);
}
return val;
}
bool ConfigurationParameter::fromJson(const web::json::value& val)
{
bool ok = true;
if(val.has_field(utility::conversions::to_string_t("name"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("name"));
if(!fieldValue.is_null())
{
std::string refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setName(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("value"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("value"));
if(!fieldValue.is_null())
{
std::string refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setValue(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("restart_required"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("restart_required"));
if(!fieldValue.is_null())
{
bool refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setRestartRequired(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("readonly"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("readonly"));
if(!fieldValue.is_null())
{
bool refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setReadonly(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("value_range"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("value_range"));
if(!fieldValue.is_null())
{
std::string refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setValueRange(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("type"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("type"));
if(!fieldValue.is_null())
{
std::string refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setType(refVal);
}
}
if(val.has_field(utility::conversions::to_string_t("description"))) {
const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("description"));
if(!fieldValue.is_null())
{
std::string refVal;
ok &= ModelBase::fromJson(fieldValue, refVal);
setDescription(refVal);
}
}
return ok;
}
std::string ConfigurationParameter::getName() const
{
return name_;
}
void ConfigurationParameter::setName(const std::string& value)
{
name_ = value;
nameIsSet_ = true;
}
bool ConfigurationParameter::nameIsSet() const
{
return nameIsSet_;
}
void ConfigurationParameter::unsetname()
{
nameIsSet_ = false;
}
std::string ConfigurationParameter::getValue() const
{
return value_;
}
void ConfigurationParameter::setValue(const std::string& value)
{
value_ = value;
valueIsSet_ = true;
}
bool ConfigurationParameter::valueIsSet() const
{
return valueIsSet_;
}
void ConfigurationParameter::unsetvalue()
{
valueIsSet_ = false;
}
bool ConfigurationParameter::isRestartRequired() const
{
return restartRequired_;
}
void ConfigurationParameter::setRestartRequired(bool value)
{
restartRequired_ = value;
restartRequiredIsSet_ = true;
}
bool ConfigurationParameter::restartRequiredIsSet() const
{
return restartRequiredIsSet_;
}
void ConfigurationParameter::unsetrestartRequired()
{
restartRequiredIsSet_ = false;
}
bool ConfigurationParameter::isReadonly() const
{
return readonly_;
}
void ConfigurationParameter::setReadonly(bool value)
{
readonly_ = value;
readonlyIsSet_ = true;
}
bool ConfigurationParameter::readonlyIsSet() const
{
return readonlyIsSet_;
}
void ConfigurationParameter::unsetreadonly()
{
readonlyIsSet_ = false;
}
std::string ConfigurationParameter::getValueRange() const
{
return valueRange_;
}
void ConfigurationParameter::setValueRange(const std::string& value)
{
valueRange_ = value;
valueRangeIsSet_ = true;
}
bool ConfigurationParameter::valueRangeIsSet() const
{
return valueRangeIsSet_;
}
void ConfigurationParameter::unsetvalueRange()
{
valueRangeIsSet_ = false;
}
std::string ConfigurationParameter::getType() const
{
return type_;
}
void ConfigurationParameter::setType(const std::string& value)
{
type_ = value;
typeIsSet_ = true;
}
bool ConfigurationParameter::typeIsSet() const
{
return typeIsSet_;
}
void ConfigurationParameter::unsettype()
{
typeIsSet_ = false;
}
std::string ConfigurationParameter::getDescription() const
{
return description_;
}
void ConfigurationParameter::setDescription(const std::string& value)
{
description_ = value;
descriptionIsSet_ = true;
}
bool ConfigurationParameter::descriptionIsSet() const
{
return descriptionIsSet_;
}
void ConfigurationParameter::unsetdescription()
{
descriptionIsSet_ = false;
}
}
}
}
}
}