/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::Utils::Xml; using namespace Aws::Utils; namespace Aws { namespace EC2 { namespace Model { SecurityGroup::SecurityGroup() : m_descriptionHasBeenSet(false), m_groupNameHasBeenSet(false), m_ipPermissionsHasBeenSet(false), m_ownerIdHasBeenSet(false), m_groupIdHasBeenSet(false), m_ipPermissionsEgressHasBeenSet(false), m_tagsHasBeenSet(false), m_vpcIdHasBeenSet(false) { } SecurityGroup::SecurityGroup(const XmlNode& xmlNode) : m_descriptionHasBeenSet(false), m_groupNameHasBeenSet(false), m_ipPermissionsHasBeenSet(false), m_ownerIdHasBeenSet(false), m_groupIdHasBeenSet(false), m_ipPermissionsEgressHasBeenSet(false), m_tagsHasBeenSet(false), m_vpcIdHasBeenSet(false) { *this = xmlNode; } SecurityGroup& SecurityGroup::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode descriptionNode = resultNode.FirstChild("groupDescription"); if(!descriptionNode.IsNull()) { m_description = Aws::Utils::Xml::DecodeEscapedXmlText(descriptionNode.GetText()); m_descriptionHasBeenSet = true; } XmlNode groupNameNode = resultNode.FirstChild("groupName"); if(!groupNameNode.IsNull()) { m_groupName = Aws::Utils::Xml::DecodeEscapedXmlText(groupNameNode.GetText()); m_groupNameHasBeenSet = true; } XmlNode ipPermissionsNode = resultNode.FirstChild("ipPermissions"); if(!ipPermissionsNode.IsNull()) { XmlNode ipPermissionsMember = ipPermissionsNode.FirstChild("item"); while(!ipPermissionsMember.IsNull()) { m_ipPermissions.push_back(ipPermissionsMember); ipPermissionsMember = ipPermissionsMember.NextNode("item"); } m_ipPermissionsHasBeenSet = true; } XmlNode ownerIdNode = resultNode.FirstChild("ownerId"); if(!ownerIdNode.IsNull()) { m_ownerId = Aws::Utils::Xml::DecodeEscapedXmlText(ownerIdNode.GetText()); m_ownerIdHasBeenSet = true; } XmlNode groupIdNode = resultNode.FirstChild("groupId"); if(!groupIdNode.IsNull()) { m_groupId = Aws::Utils::Xml::DecodeEscapedXmlText(groupIdNode.GetText()); m_groupIdHasBeenSet = true; } XmlNode ipPermissionsEgressNode = resultNode.FirstChild("ipPermissionsEgress"); if(!ipPermissionsEgressNode.IsNull()) { XmlNode ipPermissionsEgressMember = ipPermissionsEgressNode.FirstChild("item"); while(!ipPermissionsEgressMember.IsNull()) { m_ipPermissionsEgress.push_back(ipPermissionsEgressMember); ipPermissionsEgressMember = ipPermissionsEgressMember.NextNode("item"); } m_ipPermissionsEgressHasBeenSet = true; } XmlNode tagsNode = resultNode.FirstChild("tagSet"); if(!tagsNode.IsNull()) { XmlNode tagsMember = tagsNode.FirstChild("item"); while(!tagsMember.IsNull()) { m_tags.push_back(tagsMember); tagsMember = tagsMember.NextNode("item"); } m_tagsHasBeenSet = true; } XmlNode vpcIdNode = resultNode.FirstChild("vpcId"); if(!vpcIdNode.IsNull()) { m_vpcId = Aws::Utils::Xml::DecodeEscapedXmlText(vpcIdNode.GetText()); m_vpcIdHasBeenSet = true; } } return *this; } void SecurityGroup::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_descriptionHasBeenSet) { oStream << location << index << locationValue << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&"; } if(m_groupNameHasBeenSet) { oStream << location << index << locationValue << ".GroupName=" << StringUtils::URLEncode(m_groupName.c_str()) << "&"; } if(m_ipPermissionsHasBeenSet) { unsigned ipPermissionsIdx = 1; for(auto& item : m_ipPermissions) { Aws::StringStream ipPermissionsSs; ipPermissionsSs << location << index << locationValue << ".IpPermissions." << ipPermissionsIdx++; item.OutputToStream(oStream, ipPermissionsSs.str().c_str()); } } if(m_ownerIdHasBeenSet) { oStream << location << index << locationValue << ".OwnerId=" << StringUtils::URLEncode(m_ownerId.c_str()) << "&"; } if(m_groupIdHasBeenSet) { oStream << location << index << locationValue << ".GroupId=" << StringUtils::URLEncode(m_groupId.c_str()) << "&"; } if(m_ipPermissionsEgressHasBeenSet) { unsigned ipPermissionsEgressIdx = 1; for(auto& item : m_ipPermissionsEgress) { Aws::StringStream ipPermissionsEgressSs; ipPermissionsEgressSs << location << index << locationValue << ".IpPermissionsEgress." << ipPermissionsEgressIdx++; item.OutputToStream(oStream, ipPermissionsEgressSs.str().c_str()); } } if(m_tagsHasBeenSet) { unsigned tagsIdx = 1; for(auto& item : m_tags) { Aws::StringStream tagsSs; tagsSs << location << index << locationValue << ".TagSet." << tagsIdx++; item.OutputToStream(oStream, tagsSs.str().c_str()); } } if(m_vpcIdHasBeenSet) { oStream << location << index << locationValue << ".VpcId=" << StringUtils::URLEncode(m_vpcId.c_str()) << "&"; } } void SecurityGroup::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_descriptionHasBeenSet) { oStream << location << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&"; } if(m_groupNameHasBeenSet) { oStream << location << ".GroupName=" << StringUtils::URLEncode(m_groupName.c_str()) << "&"; } if(m_ipPermissionsHasBeenSet) { unsigned ipPermissionsIdx = 1; for(auto& item : m_ipPermissions) { Aws::StringStream ipPermissionsSs; ipPermissionsSs << location << ".IpPermissions." << ipPermissionsIdx++; item.OutputToStream(oStream, ipPermissionsSs.str().c_str()); } } if(m_ownerIdHasBeenSet) { oStream << location << ".OwnerId=" << StringUtils::URLEncode(m_ownerId.c_str()) << "&"; } if(m_groupIdHasBeenSet) { oStream << location << ".GroupId=" << StringUtils::URLEncode(m_groupId.c_str()) << "&"; } if(m_ipPermissionsEgressHasBeenSet) { unsigned ipPermissionsEgressIdx = 1; for(auto& item : m_ipPermissionsEgress) { Aws::StringStream ipPermissionsEgressSs; ipPermissionsEgressSs << location << ".IpPermissionsEgress." << ipPermissionsEgressIdx++; item.OutputToStream(oStream, ipPermissionsEgressSs.str().c_str()); } } if(m_tagsHasBeenSet) { unsigned tagsIdx = 1; for(auto& item : m_tags) { Aws::StringStream tagsSs; tagsSs << location << ".TagSet." << tagsIdx++; item.OutputToStream(oStream, tagsSs.str().c_str()); } } if(m_vpcIdHasBeenSet) { oStream << location << ".VpcId=" << StringUtils::URLEncode(m_vpcId.c_str()) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws