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

A file to be added, updated, or deleted as part of a commit.

See * Also:

AWS * API Reference

*/ class AWS_CODECOMMIT_API FileMetadata { public: FileMetadata(); FileMetadata(Aws::Utils::Json::JsonView jsonValue); FileMetadata& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline const Aws::String& GetAbsolutePath() const{ return m_absolutePath; } /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline bool AbsolutePathHasBeenSet() const { return m_absolutePathHasBeenSet; } /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline void SetAbsolutePath(const Aws::String& value) { m_absolutePathHasBeenSet = true; m_absolutePath = value; } /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline void SetAbsolutePath(Aws::String&& value) { m_absolutePathHasBeenSet = true; m_absolutePath = std::move(value); } /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline void SetAbsolutePath(const char* value) { m_absolutePathHasBeenSet = true; m_absolutePath.assign(value); } /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline FileMetadata& WithAbsolutePath(const Aws::String& value) { SetAbsolutePath(value); return *this;} /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline FileMetadata& WithAbsolutePath(Aws::String&& value) { SetAbsolutePath(std::move(value)); return *this;} /** *

The full path to the file to be added or updated, including the name of the * file.

*/ inline FileMetadata& WithAbsolutePath(const char* value) { SetAbsolutePath(value); return *this;} /** *

The blob ID that contains the file information.

*/ inline const Aws::String& GetBlobId() const{ return m_blobId; } /** *

The blob ID that contains the file information.

*/ inline bool BlobIdHasBeenSet() const { return m_blobIdHasBeenSet; } /** *

The blob ID that contains the file information.

*/ inline void SetBlobId(const Aws::String& value) { m_blobIdHasBeenSet = true; m_blobId = value; } /** *

The blob ID that contains the file information.

*/ inline void SetBlobId(Aws::String&& value) { m_blobIdHasBeenSet = true; m_blobId = std::move(value); } /** *

The blob ID that contains the file information.

*/ inline void SetBlobId(const char* value) { m_blobIdHasBeenSet = true; m_blobId.assign(value); } /** *

The blob ID that contains the file information.

*/ inline FileMetadata& WithBlobId(const Aws::String& value) { SetBlobId(value); return *this;} /** *

The blob ID that contains the file information.

*/ inline FileMetadata& WithBlobId(Aws::String&& value) { SetBlobId(std::move(value)); return *this;} /** *

The blob ID that contains the file information.

*/ inline FileMetadata& WithBlobId(const char* value) { SetBlobId(value); return *this;} /** *

The extrapolated file mode permissions for the file. Valid values include * EXECUTABLE and NORMAL.

*/ inline const FileModeTypeEnum& GetFileMode() const{ return m_fileMode; } /** *

The extrapolated file mode permissions for the file. Valid values include * EXECUTABLE and NORMAL.

*/ inline bool FileModeHasBeenSet() const { return m_fileModeHasBeenSet; } /** *

The extrapolated file mode permissions for the file. Valid values include * EXECUTABLE and NORMAL.

*/ inline void SetFileMode(const FileModeTypeEnum& value) { m_fileModeHasBeenSet = true; m_fileMode = value; } /** *

The extrapolated file mode permissions for the file. Valid values include * EXECUTABLE and NORMAL.

*/ inline void SetFileMode(FileModeTypeEnum&& value) { m_fileModeHasBeenSet = true; m_fileMode = std::move(value); } /** *

The extrapolated file mode permissions for the file. Valid values include * EXECUTABLE and NORMAL.

*/ inline FileMetadata& WithFileMode(const FileModeTypeEnum& value) { SetFileMode(value); return *this;} /** *

The extrapolated file mode permissions for the file. Valid values include * EXECUTABLE and NORMAL.

*/ inline FileMetadata& WithFileMode(FileModeTypeEnum&& value) { SetFileMode(std::move(value)); return *this;} private: Aws::String m_absolutePath; bool m_absolutePathHasBeenSet; Aws::String m_blobId; bool m_blobIdHasBeenSet; FileModeTypeEnum m_fileMode; bool m_fileModeHasBeenSet; }; } // namespace Model } // namespace CodeCommit } // namespace Aws