133 lines
3.6 KiB
C
133 lines
3.6 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/codecommit/CodeCommit_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace CodeCommit
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Returns information about a branch.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BranchInfo">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_CODECOMMIT_API BranchInfo
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
BranchInfo();
|
|||
|
|
BranchInfo(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
BranchInfo& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetBranchName() const{ return m_branchName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool BranchNameHasBeenSet() const { return m_branchNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBranchName(const Aws::String& value) { m_branchNameHasBeenSet = true; m_branchName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBranchName(Aws::String&& value) { m_branchNameHasBeenSet = true; m_branchName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBranchName(const char* value) { m_branchNameHasBeenSet = true; m_branchName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline BranchInfo& WithBranchName(const Aws::String& value) { SetBranchName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline BranchInfo& WithBranchName(Aws::String&& value) { SetBranchName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline BranchInfo& WithBranchName(const char* value) { SetBranchName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetCommitId() const{ return m_commitId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CommitIdHasBeenSet() const { return m_commitIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCommitId(const Aws::String& value) { m_commitIdHasBeenSet = true; m_commitId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCommitId(Aws::String&& value) { m_commitIdHasBeenSet = true; m_commitId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCommitId(const char* value) { m_commitIdHasBeenSet = true; m_commitId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline BranchInfo& WithCommitId(const Aws::String& value) { SetCommitId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline BranchInfo& WithCommitId(Aws::String&& value) { SetCommitId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ID of the last commit made to the branch.</p>
|
|||
|
|
*/
|
|||
|
|
inline BranchInfo& WithCommitId(const char* value) { SetCommitId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_branchName;
|
|||
|
|
bool m_branchNameHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_commitId;
|
|||
|
|
bool m_commitIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CodeCommit
|
|||
|
|
} // namespace Aws
|