1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/glue/model/BatchUpdatePartitionRequest.h>
7 #include <aws/core/utils/json/JsonSerializer.h>
8 
9 #include <utility>
10 
11 using namespace Aws::Glue::Model;
12 using namespace Aws::Utils::Json;
13 using namespace Aws::Utils;
14 
BatchUpdatePartitionRequest()15 BatchUpdatePartitionRequest::BatchUpdatePartitionRequest() :
16     m_catalogIdHasBeenSet(false),
17     m_databaseNameHasBeenSet(false),
18     m_tableNameHasBeenSet(false),
19     m_entriesHasBeenSet(false)
20 {
21 }
22 
SerializePayload() const23 Aws::String BatchUpdatePartitionRequest::SerializePayload() const
24 {
25   JsonValue payload;
26 
27   if(m_catalogIdHasBeenSet)
28   {
29    payload.WithString("CatalogId", m_catalogId);
30 
31   }
32 
33   if(m_databaseNameHasBeenSet)
34   {
35    payload.WithString("DatabaseName", m_databaseName);
36 
37   }
38 
39   if(m_tableNameHasBeenSet)
40   {
41    payload.WithString("TableName", m_tableName);
42 
43   }
44 
45   if(m_entriesHasBeenSet)
46   {
47    Array<JsonValue> entriesJsonList(m_entries.size());
48    for(unsigned entriesIndex = 0; entriesIndex < entriesJsonList.GetLength(); ++entriesIndex)
49    {
50      entriesJsonList[entriesIndex].AsObject(m_entries[entriesIndex].Jsonize());
51    }
52    payload.WithArray("Entries", std::move(entriesJsonList));
53 
54   }
55 
56   return payload.View().WriteReadable();
57 }
58 
GetRequestSpecificHeaders() const59 Aws::Http::HeaderValueCollection BatchUpdatePartitionRequest::GetRequestSpecificHeaders() const
60 {
61   Aws::Http::HeaderValueCollection headers;
62   headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSGlue.BatchUpdatePartition"));
63   return headers;
64 
65 }
66 
67 
68 
69 
70