248 lines
6.8 KiB
C++
248 lines
6.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/rds/model/RestoreDBInstanceToPointInTimeRequest.h>
|
|
#include <aws/core/utils/StringUtils.h>
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|
|
|
using namespace Aws::RDS::Model;
|
|
using namespace Aws::Utils;
|
|
|
|
RestoreDBInstanceToPointInTimeRequest::RestoreDBInstanceToPointInTimeRequest() :
|
|
m_sourceDBInstanceIdentifierHasBeenSet(false),
|
|
m_targetDBInstanceIdentifierHasBeenSet(false),
|
|
m_restoreTimeHasBeenSet(false),
|
|
m_useLatestRestorableTime(false),
|
|
m_useLatestRestorableTimeHasBeenSet(false),
|
|
m_dBInstanceClassHasBeenSet(false),
|
|
m_port(0),
|
|
m_portHasBeenSet(false),
|
|
m_availabilityZoneHasBeenSet(false),
|
|
m_dBSubnetGroupNameHasBeenSet(false),
|
|
m_multiAZ(false),
|
|
m_multiAZHasBeenSet(false),
|
|
m_publiclyAccessible(false),
|
|
m_publiclyAccessibleHasBeenSet(false),
|
|
m_autoMinorVersionUpgrade(false),
|
|
m_autoMinorVersionUpgradeHasBeenSet(false),
|
|
m_licenseModelHasBeenSet(false),
|
|
m_dBNameHasBeenSet(false),
|
|
m_engineHasBeenSet(false),
|
|
m_iops(0),
|
|
m_iopsHasBeenSet(false),
|
|
m_optionGroupNameHasBeenSet(false),
|
|
m_copyTagsToSnapshot(false),
|
|
m_copyTagsToSnapshotHasBeenSet(false),
|
|
m_tagsHasBeenSet(false),
|
|
m_storageTypeHasBeenSet(false),
|
|
m_tdeCredentialArnHasBeenSet(false),
|
|
m_tdeCredentialPasswordHasBeenSet(false),
|
|
m_vpcSecurityGroupIdsHasBeenSet(false),
|
|
m_domainHasBeenSet(false),
|
|
m_domainIAMRoleNameHasBeenSet(false),
|
|
m_enableIAMDatabaseAuthentication(false),
|
|
m_enableIAMDatabaseAuthenticationHasBeenSet(false),
|
|
m_enableCloudwatchLogsExportsHasBeenSet(false),
|
|
m_processorFeaturesHasBeenSet(false),
|
|
m_useDefaultProcessorFeatures(false),
|
|
m_useDefaultProcessorFeaturesHasBeenSet(false),
|
|
m_dBParameterGroupNameHasBeenSet(false),
|
|
m_deletionProtection(false),
|
|
m_deletionProtectionHasBeenSet(false),
|
|
m_sourceDbiResourceIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String RestoreDBInstanceToPointInTimeRequest::SerializePayload() const
|
|
{
|
|
Aws::StringStream ss;
|
|
ss << "Action=RestoreDBInstanceToPointInTime&";
|
|
if(m_sourceDBInstanceIdentifierHasBeenSet)
|
|
{
|
|
ss << "SourceDBInstanceIdentifier=" << StringUtils::URLEncode(m_sourceDBInstanceIdentifier.c_str()) << "&";
|
|
}
|
|
|
|
if(m_targetDBInstanceIdentifierHasBeenSet)
|
|
{
|
|
ss << "TargetDBInstanceIdentifier=" << StringUtils::URLEncode(m_targetDBInstanceIdentifier.c_str()) << "&";
|
|
}
|
|
|
|
if(m_restoreTimeHasBeenSet)
|
|
{
|
|
ss << "RestoreTime=" << StringUtils::URLEncode(m_restoreTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|
}
|
|
|
|
if(m_useLatestRestorableTimeHasBeenSet)
|
|
{
|
|
ss << "UseLatestRestorableTime=" << std::boolalpha << m_useLatestRestorableTime << "&";
|
|
}
|
|
|
|
if(m_dBInstanceClassHasBeenSet)
|
|
{
|
|
ss << "DBInstanceClass=" << StringUtils::URLEncode(m_dBInstanceClass.c_str()) << "&";
|
|
}
|
|
|
|
if(m_portHasBeenSet)
|
|
{
|
|
ss << "Port=" << m_port << "&";
|
|
}
|
|
|
|
if(m_availabilityZoneHasBeenSet)
|
|
{
|
|
ss << "AvailabilityZone=" << StringUtils::URLEncode(m_availabilityZone.c_str()) << "&";
|
|
}
|
|
|
|
if(m_dBSubnetGroupNameHasBeenSet)
|
|
{
|
|
ss << "DBSubnetGroupName=" << StringUtils::URLEncode(m_dBSubnetGroupName.c_str()) << "&";
|
|
}
|
|
|
|
if(m_multiAZHasBeenSet)
|
|
{
|
|
ss << "MultiAZ=" << std::boolalpha << m_multiAZ << "&";
|
|
}
|
|
|
|
if(m_publiclyAccessibleHasBeenSet)
|
|
{
|
|
ss << "PubliclyAccessible=" << std::boolalpha << m_publiclyAccessible << "&";
|
|
}
|
|
|
|
if(m_autoMinorVersionUpgradeHasBeenSet)
|
|
{
|
|
ss << "AutoMinorVersionUpgrade=" << std::boolalpha << m_autoMinorVersionUpgrade << "&";
|
|
}
|
|
|
|
if(m_licenseModelHasBeenSet)
|
|
{
|
|
ss << "LicenseModel=" << StringUtils::URLEncode(m_licenseModel.c_str()) << "&";
|
|
}
|
|
|
|
if(m_dBNameHasBeenSet)
|
|
{
|
|
ss << "DBName=" << StringUtils::URLEncode(m_dBName.c_str()) << "&";
|
|
}
|
|
|
|
if(m_engineHasBeenSet)
|
|
{
|
|
ss << "Engine=" << StringUtils::URLEncode(m_engine.c_str()) << "&";
|
|
}
|
|
|
|
if(m_iopsHasBeenSet)
|
|
{
|
|
ss << "Iops=" << m_iops << "&";
|
|
}
|
|
|
|
if(m_optionGroupNameHasBeenSet)
|
|
{
|
|
ss << "OptionGroupName=" << StringUtils::URLEncode(m_optionGroupName.c_str()) << "&";
|
|
}
|
|
|
|
if(m_copyTagsToSnapshotHasBeenSet)
|
|
{
|
|
ss << "CopyTagsToSnapshot=" << std::boolalpha << m_copyTagsToSnapshot << "&";
|
|
}
|
|
|
|
if(m_tagsHasBeenSet)
|
|
{
|
|
unsigned tagsCount = 1;
|
|
for(auto& item : m_tags)
|
|
{
|
|
item.OutputToStream(ss, "Tags.member.", tagsCount, "");
|
|
tagsCount++;
|
|
}
|
|
}
|
|
|
|
if(m_storageTypeHasBeenSet)
|
|
{
|
|
ss << "StorageType=" << StringUtils::URLEncode(m_storageType.c_str()) << "&";
|
|
}
|
|
|
|
if(m_tdeCredentialArnHasBeenSet)
|
|
{
|
|
ss << "TdeCredentialArn=" << StringUtils::URLEncode(m_tdeCredentialArn.c_str()) << "&";
|
|
}
|
|
|
|
if(m_tdeCredentialPasswordHasBeenSet)
|
|
{
|
|
ss << "TdeCredentialPassword=" << StringUtils::URLEncode(m_tdeCredentialPassword.c_str()) << "&";
|
|
}
|
|
|
|
if(m_vpcSecurityGroupIdsHasBeenSet)
|
|
{
|
|
unsigned vpcSecurityGroupIdsCount = 1;
|
|
for(auto& item : m_vpcSecurityGroupIds)
|
|
{
|
|
ss << "VpcSecurityGroupIds.member." << vpcSecurityGroupIdsCount << "="
|
|
<< StringUtils::URLEncode(item.c_str()) << "&";
|
|
vpcSecurityGroupIdsCount++;
|
|
}
|
|
}
|
|
|
|
if(m_domainHasBeenSet)
|
|
{
|
|
ss << "Domain=" << StringUtils::URLEncode(m_domain.c_str()) << "&";
|
|
}
|
|
|
|
if(m_domainIAMRoleNameHasBeenSet)
|
|
{
|
|
ss << "DomainIAMRoleName=" << StringUtils::URLEncode(m_domainIAMRoleName.c_str()) << "&";
|
|
}
|
|
|
|
if(m_enableIAMDatabaseAuthenticationHasBeenSet)
|
|
{
|
|
ss << "EnableIAMDatabaseAuthentication=" << std::boolalpha << m_enableIAMDatabaseAuthentication << "&";
|
|
}
|
|
|
|
if(m_enableCloudwatchLogsExportsHasBeenSet)
|
|
{
|
|
unsigned enableCloudwatchLogsExportsCount = 1;
|
|
for(auto& item : m_enableCloudwatchLogsExports)
|
|
{
|
|
ss << "EnableCloudwatchLogsExports.member." << enableCloudwatchLogsExportsCount << "="
|
|
<< StringUtils::URLEncode(item.c_str()) << "&";
|
|
enableCloudwatchLogsExportsCount++;
|
|
}
|
|
}
|
|
|
|
if(m_processorFeaturesHasBeenSet)
|
|
{
|
|
unsigned processorFeaturesCount = 1;
|
|
for(auto& item : m_processorFeatures)
|
|
{
|
|
item.OutputToStream(ss, "ProcessorFeatures.member.", processorFeaturesCount, "");
|
|
processorFeaturesCount++;
|
|
}
|
|
}
|
|
|
|
if(m_useDefaultProcessorFeaturesHasBeenSet)
|
|
{
|
|
ss << "UseDefaultProcessorFeatures=" << std::boolalpha << m_useDefaultProcessorFeatures << "&";
|
|
}
|
|
|
|
if(m_dBParameterGroupNameHasBeenSet)
|
|
{
|
|
ss << "DBParameterGroupName=" << StringUtils::URLEncode(m_dBParameterGroupName.c_str()) << "&";
|
|
}
|
|
|
|
if(m_deletionProtectionHasBeenSet)
|
|
{
|
|
ss << "DeletionProtection=" << std::boolalpha << m_deletionProtection << "&";
|
|
}
|
|
|
|
if(m_sourceDbiResourceIdHasBeenSet)
|
|
{
|
|
ss << "SourceDbiResourceId=" << StringUtils::URLEncode(m_sourceDbiResourceId.c_str()) << "&";
|
|
}
|
|
|
|
ss << "Version=2014-10-31";
|
|
return ss.str();
|
|
}
|
|
|
|
|
|
void RestoreDBInstanceToPointInTimeRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
|
|
{
|
|
uri.SetQueryString(SerializePayload());
|
|
}
|