/** * 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 ECR { namespace Model { /** */ class DescribeRepositoriesRequest : public ECRRequest { public: AWS_ECR_API DescribeRepositoriesRequest(); // 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 "DescribeRepositories"; } AWS_ECR_API Aws::String SerializePayload() const override; AWS_ECR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline const Aws::String& GetRegistryId() const{ return m_registryId; } /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline bool RegistryIdHasBeenSet() const { return m_registryIdHasBeenSet; } /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline void SetRegistryId(const Aws::String& value) { m_registryIdHasBeenSet = true; m_registryId = value; } /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline void SetRegistryId(Aws::String&& value) { m_registryIdHasBeenSet = true; m_registryId = std::move(value); } /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline void SetRegistryId(const char* value) { m_registryIdHasBeenSet = true; m_registryId.assign(value); } /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline DescribeRepositoriesRequest& WithRegistryId(const Aws::String& value) { SetRegistryId(value); return *this;} /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline DescribeRepositoriesRequest& WithRegistryId(Aws::String&& value) { SetRegistryId(std::move(value)); return *this;} /** *

The Amazon Web Services account ID associated with the registry that contains * the repositories to be described. If you do not specify a registry, the default * registry is assumed.

*/ inline DescribeRepositoriesRequest& WithRegistryId(const char* value) { SetRegistryId(value); return *this;} /** *

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

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

A list of repositories to describe. If this parameter is omitted, then all * repositories in a registry are described.

*/ inline DescribeRepositoriesRequest& AddRepositoryNames(const char* value) { m_repositoryNamesHasBeenSet = true; m_repositoryNames.push_back(value); return *this; } /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline DescribeRepositoriesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline DescribeRepositoriesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The nextToken value returned from a previous paginated * DescribeRepositories request where maxResults was used * and the results exceeded the value of that parameter. Pagination continues from * the end of the previous results that returned the nextToken value. * This value is null when there are no more results to return. This * option cannot be used when you specify repositories with * repositoryNames.

This token should be treated as an * opaque identifier that is only used to retrieve the next items in a list and not * for other programmatic purposes.

*/ inline DescribeRepositoriesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of repository results returned by * DescribeRepositories in paginated output. When this parameter is * used, DescribeRepositories only returns maxResults * results in a single page along with a nextToken response element. * The remaining results of the initial request can be seen by sending another * DescribeRepositories request with the returned * nextToken value. This value can be between 1 and 1000. If this * parameter is not used, then DescribeRepositories returns up to 100 * results and a nextToken value, if applicable. This option cannot be * used when you specify repositories with repositoryNames.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of repository results returned by * DescribeRepositories in paginated output. When this parameter is * used, DescribeRepositories only returns maxResults * results in a single page along with a nextToken response element. * The remaining results of the initial request can be seen by sending another * DescribeRepositories request with the returned * nextToken value. This value can be between 1 and 1000. If this * parameter is not used, then DescribeRepositories returns up to 100 * results and a nextToken value, if applicable. This option cannot be * used when you specify repositories with repositoryNames.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of repository results returned by * DescribeRepositories in paginated output. When this parameter is * used, DescribeRepositories only returns maxResults * results in a single page along with a nextToken response element. * The remaining results of the initial request can be seen by sending another * DescribeRepositories request with the returned * nextToken value. This value can be between 1 and 1000. If this * parameter is not used, then DescribeRepositories returns up to 100 * results and a nextToken value, if applicable. This option cannot be * used when you specify repositories with repositoryNames.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of repository results returned by * DescribeRepositories in paginated output. When this parameter is * used, DescribeRepositories only returns maxResults * results in a single page along with a nextToken response element. * The remaining results of the initial request can be seen by sending another * DescribeRepositories request with the returned * nextToken value. This value can be between 1 and 1000. If this * parameter is not used, then DescribeRepositories returns up to 100 * results and a nextToken value, if applicable. This option cannot be * used when you specify repositories with repositoryNames.

*/ inline DescribeRepositoriesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_registryId; bool m_registryIdHasBeenSet = false; Aws::Vector m_repositoryNames; bool m_repositoryNamesHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace ECR } // namespace Aws