/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace CodeCommit { namespace Model { /** *

Represents the input of a batch get repositories operation.

See * Also:

AWS * API Reference

*/ class BatchGetRepositoriesRequest : public CodeCommitRequest { public: AWS_CODECOMMIT_API BatchGetRepositoriesRequest(); // 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 "BatchGetRepositories"; } AWS_CODECOMMIT_API Aws::String SerializePayload() const override; AWS_CODECOMMIT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline const Aws::Vector& GetRepositoryNames() const{ return m_repositoryNames; } /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline bool RepositoryNamesHasBeenSet() const { return m_repositoryNamesHasBeenSet; } /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline void SetRepositoryNames(const Aws::Vector& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames = value; } /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline void SetRepositoryNames(Aws::Vector&& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames = std::move(value); } /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline BatchGetRepositoriesRequest& WithRepositoryNames(const Aws::Vector& value) { SetRepositoryNames(value); return *this;} /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline BatchGetRepositoriesRequest& WithRepositoryNames(Aws::Vector&& value) { SetRepositoryNames(std::move(value)); return *this;} /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline BatchGetRepositoriesRequest& AddRepositoryNames(const Aws::String& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(value); return *this; } /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline BatchGetRepositoriesRequest& AddRepositoryNames(Aws::String&& value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(std::move(value)); return *this; } /** *

The names of the repositories to get information about.

The * length constraint limit is for each string in the array. The array itself can be * empty.

*/ inline BatchGetRepositoriesRequest& AddRepositoryNames(const char* value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(value); return *this; } private: Aws::Vector m_repositoryNames; bool m_repositoryNamesHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws