92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/codebuild/CodeBuild_EXPORTS.h>
|
|
#include <aws/codebuild/CodeBuildRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CodeBuild
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CODEBUILD_API BatchDeleteBuildsRequest : public CodeBuildRequest
|
|
{
|
|
public:
|
|
BatchDeleteBuildsRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "BatchDeleteBuilds"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetIds() const{ return m_ids; }
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline bool IdsHasBeenSet() const { return m_idsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline void SetIds(const Aws::Vector<Aws::String>& value) { m_idsHasBeenSet = true; m_ids = value; }
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline void SetIds(Aws::Vector<Aws::String>&& value) { m_idsHasBeenSet = true; m_ids = std::move(value); }
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline BatchDeleteBuildsRequest& WithIds(const Aws::Vector<Aws::String>& value) { SetIds(value); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline BatchDeleteBuildsRequest& WithIds(Aws::Vector<Aws::String>&& value) { SetIds(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline BatchDeleteBuildsRequest& AddIds(const Aws::String& value) { m_idsHasBeenSet = true; m_ids.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline BatchDeleteBuildsRequest& AddIds(Aws::String&& value) { m_idsHasBeenSet = true; m_ids.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The IDs of the builds to delete.</p>
|
|
*/
|
|
inline BatchDeleteBuildsRequest& AddIds(const char* value) { m_idsHasBeenSet = true; m_ids.push_back(value); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::Vector<Aws::String> m_ids;
|
|
bool m_idsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CodeBuild
|
|
} // namespace Aws
|