119 lines
2.5 KiB
C++
119 lines
2.5 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/glue/model/UpdateCrawlerRequest.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Glue::Model;
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
UpdateCrawlerRequest::UpdateCrawlerRequest() :
|
|||
|
|
m_nameHasBeenSet(false),
|
|||
|
|
m_roleHasBeenSet(false),
|
|||
|
|
m_databaseNameHasBeenSet(false),
|
|||
|
|
m_descriptionHasBeenSet(false),
|
|||
|
|
m_targetsHasBeenSet(false),
|
|||
|
|
m_scheduleHasBeenSet(false),
|
|||
|
|
m_classifiersHasBeenSet(false),
|
|||
|
|
m_tablePrefixHasBeenSet(false),
|
|||
|
|
m_schemaChangePolicyHasBeenSet(false),
|
|||
|
|
m_configurationHasBeenSet(false),
|
|||
|
|
m_crawlerSecurityConfigurationHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String UpdateCrawlerRequest::SerializePayload() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_nameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Name", m_name);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_roleHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Role", m_role);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_databaseNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("DatabaseName", m_databaseName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_descriptionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Description", m_description);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_targetsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("Targets", m_targets.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_scheduleHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Schedule", m_schedule);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_classifiersHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> classifiersJsonList(m_classifiers.size());
|
|||
|
|
for(unsigned classifiersIndex = 0; classifiersIndex < classifiersJsonList.GetLength(); ++classifiersIndex)
|
|||
|
|
{
|
|||
|
|
classifiersJsonList[classifiersIndex].AsString(m_classifiers[classifiersIndex]);
|
|||
|
|
}
|
|||
|
|
payload.WithArray("Classifiers", std::move(classifiersJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_tablePrefixHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("TablePrefix", m_tablePrefix);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_schemaChangePolicyHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("SchemaChangePolicy", m_schemaChangePolicy.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_configurationHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Configuration", m_configuration);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_crawlerSecurityConfigurationHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("CrawlerSecurityConfiguration", m_crawlerSecurityConfiguration);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload.View().WriteReadable();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection UpdateCrawlerRequest::GetRequestSpecificHeaders() const
|
|||
|
|
{
|
|||
|
|
Aws::Http::HeaderValueCollection headers;
|
|||
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSGlue.UpdateCrawler"));
|
|||
|
|
return headers;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|