62 lines
1.4 KiB
C++
62 lines
1.4 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/importexport/model/UpdateJobRequest.h>
|
|||
|
|
#include <aws/core/utils/StringUtils.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|||
|
|
|
|||
|
|
using namespace Aws::ImportExport::Model;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
UpdateJobRequest::UpdateJobRequest() :
|
|||
|
|
m_jobIdHasBeenSet(false),
|
|||
|
|
m_manifestHasBeenSet(false),
|
|||
|
|
m_jobType(JobType::NOT_SET),
|
|||
|
|
m_jobTypeHasBeenSet(false),
|
|||
|
|
m_validateOnly(false),
|
|||
|
|
m_validateOnlyHasBeenSet(false),
|
|||
|
|
m_aPIVersionHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String UpdateJobRequest::SerializePayload() const
|
|||
|
|
{
|
|||
|
|
Aws::StringStream ss;
|
|||
|
|
ss << "Action=UpdateJob&";
|
|||
|
|
if(m_jobIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
ss << "JobId=" << StringUtils::URLEncode(m_jobId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_manifestHasBeenSet)
|
|||
|
|
{
|
|||
|
|
ss << "Manifest=" << StringUtils::URLEncode(m_manifest.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_jobTypeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
ss << "JobType=" << JobTypeMapper::GetNameForJobType(m_jobType) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_validateOnlyHasBeenSet)
|
|||
|
|
{
|
|||
|
|
ss << "ValidateOnly=" << std::boolalpha << m_validateOnly << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_aPIVersionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
ss << "APIVersion=" << StringUtils::URLEncode(m_aPIVersion.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
ss << "Version=2010-06-01";
|
|||
|
|
return ss.str();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
void UpdateJobRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
|
|||
|
|
{
|
|||
|
|
uri.SetQueryString(SerializePayload());
|
|||
|
|
}
|