This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-glue/source/model/PartitionInput.cpp

134 lines
3.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/glue/model/PartitionInput.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Glue
{
namespace Model
{
PartitionInput::PartitionInput() :
m_valuesHasBeenSet(false),
m_lastAccessTimeHasBeenSet(false),
m_storageDescriptorHasBeenSet(false),
m_parametersHasBeenSet(false),
m_lastAnalyzedTimeHasBeenSet(false)
{
}
PartitionInput::PartitionInput(JsonView jsonValue) :
m_valuesHasBeenSet(false),
m_lastAccessTimeHasBeenSet(false),
m_storageDescriptorHasBeenSet(false),
m_parametersHasBeenSet(false),
m_lastAnalyzedTimeHasBeenSet(false)
{
*this = jsonValue;
}
PartitionInput& PartitionInput::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Values"))
{
Array<JsonView> valuesJsonList = jsonValue.GetArray("Values");
for(unsigned valuesIndex = 0; valuesIndex < valuesJsonList.GetLength(); ++valuesIndex)
{
m_values.push_back(valuesJsonList[valuesIndex].AsString());
}
m_valuesHasBeenSet = true;
}
if(jsonValue.ValueExists("LastAccessTime"))
{
m_lastAccessTime = jsonValue.GetDouble("LastAccessTime");
m_lastAccessTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("StorageDescriptor"))
{
m_storageDescriptor = jsonValue.GetObject("StorageDescriptor");
m_storageDescriptorHasBeenSet = true;
}
if(jsonValue.ValueExists("Parameters"))
{
Aws::Map<Aws::String, JsonView> parametersJsonMap = jsonValue.GetObject("Parameters").GetAllObjects();
for(auto& parametersItem : parametersJsonMap)
{
m_parameters[parametersItem.first] = parametersItem.second.AsString();
}
m_parametersHasBeenSet = true;
}
if(jsonValue.ValueExists("LastAnalyzedTime"))
{
m_lastAnalyzedTime = jsonValue.GetDouble("LastAnalyzedTime");
m_lastAnalyzedTimeHasBeenSet = true;
}
return *this;
}
JsonValue PartitionInput::Jsonize() const
{
JsonValue payload;
if(m_valuesHasBeenSet)
{
Array<JsonValue> valuesJsonList(m_values.size());
for(unsigned valuesIndex = 0; valuesIndex < valuesJsonList.GetLength(); ++valuesIndex)
{
valuesJsonList[valuesIndex].AsString(m_values[valuesIndex]);
}
payload.WithArray("Values", std::move(valuesJsonList));
}
if(m_lastAccessTimeHasBeenSet)
{
payload.WithDouble("LastAccessTime", m_lastAccessTime.SecondsWithMSPrecision());
}
if(m_storageDescriptorHasBeenSet)
{
payload.WithObject("StorageDescriptor", m_storageDescriptor.Jsonize());
}
if(m_parametersHasBeenSet)
{
JsonValue parametersJsonMap;
for(auto& parametersItem : m_parameters)
{
parametersJsonMap.WithString(parametersItem.first, parametersItem.second);
}
payload.WithObject("Parameters", std::move(parametersJsonMap));
}
if(m_lastAnalyzedTimeHasBeenSet)
{
payload.WithDouble("LastAnalyzedTime", m_lastAnalyzedTime.SecondsWithMSPrecision());
}
return payload;
}
} // namespace Model
} // namespace Glue
} // namespace Aws