/** * 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; DeleteRepositoryRequest::DeleteRepositoryRequest() : m_registryIdHasBeenSet(false), m_repositoryNameHasBeenSet(false), m_force(false), m_forceHasBeenSet(false) { } Aws::String DeleteRepositoryRequest::SerializePayload() const { JsonValue payload; if(m_registryIdHasBeenSet) { payload.WithString("registryId", m_registryId); } if(m_repositoryNameHasBeenSet) { payload.WithString("repositoryName", m_repositoryName); } if(m_forceHasBeenSet) { payload.WithBool("force", m_force); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection DeleteRepositoryRequest::GetRequestSpecificHeaders() const { Aws::Http::HeaderValueCollection headers; headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "SpencerFrontendService.DeleteRepository")); return headers; }