feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,88 @@
/**
* 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>A file that is deleted as part of a commit.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteFileEntry">AWS
* API Reference</a></p>
*/
class AWS_CODECOMMIT_API DeleteFileEntry
{
public:
DeleteFileEntry();
DeleteFileEntry(Aws::Utils::Json::JsonView jsonValue);
DeleteFileEntry& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline const Aws::String& GetFilePath() const{ return m_filePath; }
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline bool FilePathHasBeenSet() const { return m_filePathHasBeenSet; }
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline void SetFilePath(const Aws::String& value) { m_filePathHasBeenSet = true; m_filePath = value; }
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline void SetFilePath(Aws::String&& value) { m_filePathHasBeenSet = true; m_filePath = std::move(value); }
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline void SetFilePath(const char* value) { m_filePathHasBeenSet = true; m_filePath.assign(value); }
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline DeleteFileEntry& WithFilePath(const Aws::String& value) { SetFilePath(value); return *this;}
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline DeleteFileEntry& WithFilePath(Aws::String&& value) { SetFilePath(std::move(value)); return *this;}
/**
* <p>The full path of the file to be deleted, including the name of the file.</p>
*/
inline DeleteFileEntry& WithFilePath(const char* value) { SetFilePath(value); return *this;}
private:
Aws::String m_filePath;
bool m_filePathHasBeenSet;
};
} // namespace Model
} // namespace CodeCommit
} // namespace Aws