/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace MQ { namespace Model { User::User() : m_consoleAccess(false), m_consoleAccessHasBeenSet(false), m_groupsHasBeenSet(false), m_passwordHasBeenSet(false), m_usernameHasBeenSet(false), m_replicationUser(false), m_replicationUserHasBeenSet(false) { } User::User(JsonView jsonValue) : m_consoleAccess(false), m_consoleAccessHasBeenSet(false), m_groupsHasBeenSet(false), m_passwordHasBeenSet(false), m_usernameHasBeenSet(false), m_replicationUser(false), m_replicationUserHasBeenSet(false) { *this = jsonValue; } User& User::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("consoleAccess")) { m_consoleAccess = jsonValue.GetBool("consoleAccess"); m_consoleAccessHasBeenSet = true; } if(jsonValue.ValueExists("groups")) { Aws::Utils::Array groupsJsonList = jsonValue.GetArray("groups"); for(unsigned groupsIndex = 0; groupsIndex < groupsJsonList.GetLength(); ++groupsIndex) { m_groups.push_back(groupsJsonList[groupsIndex].AsString()); } m_groupsHasBeenSet = true; } if(jsonValue.ValueExists("password")) { m_password = jsonValue.GetString("password"); m_passwordHasBeenSet = true; } if(jsonValue.ValueExists("username")) { m_username = jsonValue.GetString("username"); m_usernameHasBeenSet = true; } if(jsonValue.ValueExists("replicationUser")) { m_replicationUser = jsonValue.GetBool("replicationUser"); m_replicationUserHasBeenSet = true; } return *this; } JsonValue User::Jsonize() const { JsonValue payload; if(m_consoleAccessHasBeenSet) { payload.WithBool("consoleAccess", m_consoleAccess); } if(m_groupsHasBeenSet) { Aws::Utils::Array groupsJsonList(m_groups.size()); for(unsigned groupsIndex = 0; groupsIndex < groupsJsonList.GetLength(); ++groupsIndex) { groupsJsonList[groupsIndex].AsString(m_groups[groupsIndex]); } payload.WithArray("groups", std::move(groupsJsonList)); } if(m_passwordHasBeenSet) { payload.WithString("password", m_password); } if(m_usernameHasBeenSet) { payload.WithString("username", m_username); } if(m_replicationUserHasBeenSet) { payload.WithBool("replicationUser", m_replicationUser); } return payload; } } // namespace Model } // namespace MQ } // namespace Aws