/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ECRPublic::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; BatchDeleteImageRequest::BatchDeleteImageRequest() : m_registryIdHasBeenSet(false), m_repositoryNameHasBeenSet(false), m_imageIdsHasBeenSet(false) { } Aws::String BatchDeleteImageRequest::SerializePayload() const { JsonValue payload; if(m_registryIdHasBeenSet) { payload.WithString("registryId", m_registryId); } if(m_repositoryNameHasBeenSet) { payload.WithString("repositoryName", m_repositoryName); } if(m_imageIdsHasBeenSet) { Aws::Utils::Array imageIdsJsonList(m_imageIds.size()); for(unsigned imageIdsIndex = 0; imageIdsIndex < imageIdsJsonList.GetLength(); ++imageIdsIndex) { imageIdsJsonList[imageIdsIndex].AsObject(m_imageIds[imageIdsIndex].Jsonize()); } payload.WithArray("imageIds", std::move(imageIdsJsonList)); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection BatchDeleteImageRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "SpencerFrontendService.BatchDeleteImage")); return headers; }