/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a get blob operation.See Also:
AWS
* API Reference
The name of the repository that contains the blob.
*/ inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; } /** *The name of the repository that contains the blob.
*/ inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; } /** *The name of the repository that contains the blob.
*/ inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; } /** *The name of the repository that contains the blob.
*/ inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); } /** *The name of the repository that contains the blob.
*/ inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); } /** *The name of the repository that contains the blob.
*/ inline GetBlobRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;} /** *The name of the repository that contains the blob.
*/ inline GetBlobRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;} /** *The name of the repository that contains the blob.
*/ inline GetBlobRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;} /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline const Aws::String& GetBlobId() const{ return m_blobId; } /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline bool BlobIdHasBeenSet() const { return m_blobIdHasBeenSet; } /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline void SetBlobId(const Aws::String& value) { m_blobIdHasBeenSet = true; m_blobId = value; } /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline void SetBlobId(Aws::String&& value) { m_blobIdHasBeenSet = true; m_blobId = std::move(value); } /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline void SetBlobId(const char* value) { m_blobIdHasBeenSet = true; m_blobId.assign(value); } /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline GetBlobRequest& WithBlobId(const Aws::String& value) { SetBlobId(value); return *this;} /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline GetBlobRequest& WithBlobId(Aws::String&& value) { SetBlobId(std::move(value)); return *this;} /** *The ID of the blob, which is its SHA-1 pointer.
*/ inline GetBlobRequest& WithBlobId(const char* value) { SetBlobId(value); return *this;} private: Aws::String m_repositoryName; bool m_repositoryNameHasBeenSet = false; Aws::String m_blobId; bool m_blobIdHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws