/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/devicefarm/model/CreateDevicePoolRequest.h> #include <aws/core/utils/json/JsonSerializer.h> #include <utility> using namespace Aws::DeviceFarm::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; CreateDevicePoolRequest::CreateDevicePoolRequest() : m_projectArnHasBeenSet(false), m_nameHasBeenSet(false), m_descriptionHasBeenSet(false), m_rulesHasBeenSet(false), m_maxDevices(0), m_maxDevicesHasBeenSet(false) { } Aws::String CreateDevicePoolRequest::SerializePayload() const { JsonValue payload; if(m_projectArnHasBeenSet) { payload.WithString("projectArn", m_projectArn); } if(m_nameHasBeenSet) { payload.WithString("name", m_name); } if(m_descriptionHasBeenSet) { payload.WithString("description", m_description); } if(m_rulesHasBeenSet) { Aws::Utils::Array<JsonValue> rulesJsonList(m_rules.size()); for(unsigned rulesIndex = 0; rulesIndex < rulesJsonList.GetLength(); ++rulesIndex) { rulesJsonList[rulesIndex].AsObject(m_rules[rulesIndex].Jsonize()); } payload.WithArray("rules", std::move(rulesJsonList)); } if(m_maxDevicesHasBeenSet) { payload.WithInteger("maxDevices", m_maxDevices); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection CreateDevicePoolRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "DeviceFarm_20150623.CreateDevicePool")); return headers; }