162 lines
5.5 KiB
C++
162 lines
5.5 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/ec2/model/NetworkInterfacePermission.h>
|
|||
|
|
#include <aws/core/utils/xml/XmlSerializer.h>
|
|||
|
|
#include <aws/core/utils/StringUtils.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Xml;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace EC2
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
NetworkInterfacePermission::NetworkInterfacePermission() :
|
|||
|
|
m_networkInterfacePermissionIdHasBeenSet(false),
|
|||
|
|
m_networkInterfaceIdHasBeenSet(false),
|
|||
|
|
m_awsAccountIdHasBeenSet(false),
|
|||
|
|
m_awsServiceHasBeenSet(false),
|
|||
|
|
m_permission(InterfacePermissionType::NOT_SET),
|
|||
|
|
m_permissionHasBeenSet(false),
|
|||
|
|
m_permissionStateHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
NetworkInterfacePermission::NetworkInterfacePermission(const XmlNode& xmlNode) :
|
|||
|
|
m_networkInterfacePermissionIdHasBeenSet(false),
|
|||
|
|
m_networkInterfaceIdHasBeenSet(false),
|
|||
|
|
m_awsAccountIdHasBeenSet(false),
|
|||
|
|
m_awsServiceHasBeenSet(false),
|
|||
|
|
m_permission(InterfacePermissionType::NOT_SET),
|
|||
|
|
m_permissionHasBeenSet(false),
|
|||
|
|
m_permissionStateHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = xmlNode;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
NetworkInterfacePermission& NetworkInterfacePermission::operator =(const XmlNode& xmlNode)
|
|||
|
|
{
|
|||
|
|
XmlNode resultNode = xmlNode;
|
|||
|
|
|
|||
|
|
if(!resultNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode networkInterfacePermissionIdNode = resultNode.FirstChild("networkInterfacePermissionId");
|
|||
|
|
if(!networkInterfacePermissionIdNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_networkInterfacePermissionId = Aws::Utils::Xml::DecodeEscapedXmlText(networkInterfacePermissionIdNode.GetText());
|
|||
|
|
m_networkInterfacePermissionIdHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode networkInterfaceIdNode = resultNode.FirstChild("networkInterfaceId");
|
|||
|
|
if(!networkInterfaceIdNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_networkInterfaceId = Aws::Utils::Xml::DecodeEscapedXmlText(networkInterfaceIdNode.GetText());
|
|||
|
|
m_networkInterfaceIdHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode awsAccountIdNode = resultNode.FirstChild("awsAccountId");
|
|||
|
|
if(!awsAccountIdNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_awsAccountId = Aws::Utils::Xml::DecodeEscapedXmlText(awsAccountIdNode.GetText());
|
|||
|
|
m_awsAccountIdHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode awsServiceNode = resultNode.FirstChild("awsService");
|
|||
|
|
if(!awsServiceNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_awsService = Aws::Utils::Xml::DecodeEscapedXmlText(awsServiceNode.GetText());
|
|||
|
|
m_awsServiceHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode permissionNode = resultNode.FirstChild("permission");
|
|||
|
|
if(!permissionNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_permission = InterfacePermissionTypeMapper::GetInterfacePermissionTypeForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(permissionNode.GetText()).c_str()).c_str());
|
|||
|
|
m_permissionHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode permissionStateNode = resultNode.FirstChild("permissionState");
|
|||
|
|
if(!permissionStateNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_permissionState = permissionStateNode;
|
|||
|
|
m_permissionStateHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void NetworkInterfacePermission::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|||
|
|
{
|
|||
|
|
if(m_networkInterfacePermissionIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".NetworkInterfacePermissionId=" << StringUtils::URLEncode(m_networkInterfacePermissionId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_networkInterfaceIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".NetworkInterfaceId=" << StringUtils::URLEncode(m_networkInterfaceId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_awsAccountIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".AwsAccountId=" << StringUtils::URLEncode(m_awsAccountId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_awsServiceHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".AwsService=" << StringUtils::URLEncode(m_awsService.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_permissionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".Permission=" << InterfacePermissionTypeMapper::GetNameForInterfacePermissionType(m_permission) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_permissionStateHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream permissionStateLocationAndMemberSs;
|
|||
|
|
permissionStateLocationAndMemberSs << location << index << locationValue << ".PermissionState";
|
|||
|
|
m_permissionState.OutputToStream(oStream, permissionStateLocationAndMemberSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void NetworkInterfacePermission::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|||
|
|
{
|
|||
|
|
if(m_networkInterfacePermissionIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".NetworkInterfacePermissionId=" << StringUtils::URLEncode(m_networkInterfacePermissionId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_networkInterfaceIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".NetworkInterfaceId=" << StringUtils::URLEncode(m_networkInterfaceId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_awsAccountIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".AwsAccountId=" << StringUtils::URLEncode(m_awsAccountId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_awsServiceHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".AwsService=" << StringUtils::URLEncode(m_awsService.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_permissionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".Permission=" << InterfacePermissionTypeMapper::GetNameForInterfacePermissionType(m_permission) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_permissionStateHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Aws::String permissionStateLocationAndMember(location);
|
|||
|
|
permissionStateLocationAndMember += ".PermissionState";
|
|||
|
|
m_permissionState.OutputToStream(oStream, permissionStateLocationAndMember.c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace EC2
|
|||
|
|
} // namespace Aws
|