63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/devicefarm/model/UpdateDeviceInstanceRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::DeviceFarm::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
UpdateDeviceInstanceRequest::UpdateDeviceInstanceRequest() :
|
|
m_arnHasBeenSet(false),
|
|
m_profileArnHasBeenSet(false),
|
|
m_labelsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String UpdateDeviceInstanceRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_arnHasBeenSet)
|
|
{
|
|
payload.WithString("arn", m_arn);
|
|
|
|
}
|
|
|
|
if(m_profileArnHasBeenSet)
|
|
{
|
|
payload.WithString("profileArn", m_profileArn);
|
|
|
|
}
|
|
|
|
if(m_labelsHasBeenSet)
|
|
{
|
|
Array<JsonValue> labelsJsonList(m_labels.size());
|
|
for(unsigned labelsIndex = 0; labelsIndex < labelsJsonList.GetLength(); ++labelsIndex)
|
|
{
|
|
labelsJsonList[labelsIndex].AsString(m_labels[labelsIndex]);
|
|
}
|
|
payload.WithArray("labels", std::move(labelsJsonList));
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection UpdateDeviceInstanceRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "DeviceFarm_20150623.UpdateDeviceInstance"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|